Skip to content

Commit 79b33ae

Browse files
Fix slider and rich text failing e2e test (#222)
2 parents 5930893 + 98439d8 commit 79b33ae

File tree

6 files changed

+18
-20
lines changed

6 files changed

+18
-20
lines changed

automation/run-e2e/lib/docker-utils.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export function startCypress(ip, freePort) {
158158
// container name
159159
`--name cypress`,
160160
// image to run, the entrypoint set to `cypress run` by default
161-
`cypress/included:12.1.0`,
161+
`cypress/included:12.2.0`,
162162
// cypress options
163163
`--browser ${browserCypress} ${headedMode}`.trim(),
164164
`--e2e`,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"latest": "9.20.0.58427",
2+
"latest": "9.21.0.59661",
33
"8": "8.18.19.47894"
44
}

automation/run-e2e/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"ansi-colors": "^4.1.3",
2424
"cross-zip": "^4.0.0",
25-
"cypress": "^12.1.0",
25+
"cypress": "^12.2.0",
2626
"cypress-image-diff-js": "^1.22.0",
2727
"cypress-terminal-report": "^5.0.0",
2828
"enquirer": "^2.3.6",

packages/pluggableWidgets/rich-text-web/cypress/integration/RichText.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ describe("RichText", () => {
2222
});
2323

2424
before(() => {
25-
cy.visit("/");
25+
cy.visit("index.html");
2626
cy.contains("Generate Data").click();
2727
});
2828

packages/pluggableWidgets/slider-web/cypress/integration/Slider.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe("Slider widget", () => {
99

1010
describe("Slider", () => {
1111
it("renders with context", () => {
12-
cy.visit("/");
12+
cy.visit("index.html");
1313
cy.get(".mx-name-textBoxMinimumValue")
1414
.find("input")
1515
.then($minimumValue => {

pnpm-lock.yaml

Lines changed: 13 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)