Skip to content

Commit

Permalink
tests bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
CristianDavideConte committed Jan 13, 2024
1 parent c6ee81b commit 936be29
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/getAllScrollableParents-tests.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ describe("getAllScrollableParents", function () {
cy.window()
.then((win) => {
cy.testFailingValues(uss.getAllScrollableParents, {
0: [constants.failingValuesAll,
0: [constants.failingValuesAllNoUndefined,
[true, false],
constants.failingValuesAll
constants.failingValuesAllNoUndefined
]
},
(res, v1, v2, v3, v4, v5, v6, v7) => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/getScrollableParent-tests.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("getScrollableParent", function () {
cy.window()
.then((win) => {
cy.testFailingValues(uss.getScrollableParent, {
0: [constants.failingValuesAll,
0: [constants.failingValuesAllNoUndefined,
[true, false]
]
},
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/getXScrollableParent-tests.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("getXScrollableParent", function () {
cy.window()
.then((win) => {
cy.testFailingValues(uss.getXScrollableParent, {
0: [constants.failingValuesAll,
0: [constants.failingValuesAllNoUndefined,
[true, false]
]
},
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/getYScrollableParent-tests.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("getYScrollableParent", function () {
cy.window()
.then((win) => {
cy.testFailingValues(uss.getYScrollableParent, {
0: [constants.failingValuesAll,
0: [constants.failingValuesAllNoUndefined,
[true, false]
]
},
Expand Down

0 comments on commit 936be29

Please sign in to comment.