Dashboards/E2E: Add tests for drag and drop (#105066)

This commit is contained in:
kay delaney
2025-05-13 20:27:40 +01:00
committed by GitHub
parent 5e056c2a3f
commit 3d5689cd07
6 changed files with 103 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
const elementPositions = (_chai) => {
function assertIsHigherThan(el) {
this.assert(
this._obj.offset().top < el.offset().top,
'expected #{this} to be above target',
'expected #{this} to not be above target',
this._obj
);
}
function assertIsLowerThan(el) {
this.assert(
this._obj.offset().top > el.offset().top,
'expected #{this} to be below target',
'expected #{this} to not be below target',
this._obj
);
}
function assertIsLeftOf(el) {
this.assert(
this._obj.offset().left < el.offset().left,
'expected #{this} to be left of target',
'expected #{this} to not be left of target',
this._obj
);
}
function assertIsRightOf(el) {
this.assert(
this._obj.offset().left > el.offset().left,
'expected #{this} to be right of target',
'expected #{this} to not be right of target',
this._obj
);
}
// Would prefer 'above' and 'below', but those already exist for numeric comparisons. Not sure they can be overloaded.
_chai.Assertion.addMethod('higherThan', assertIsHigherThan);
_chai.Assertion.addMethod('lowerThan', assertIsLowerThan);
_chai.Assertion.addMethod('leftOf', assertIsLeftOf);
_chai.Assertion.addMethod('rightOf', assertIsRightOf);
};
chai.use(elementPositions);