Tries to fix int tests
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
FROM cypress/included:9.0.0
|
||||
FROM cypress/included:9.5.4
|
||||
|
||||
RUN curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
|
||||
RUN apt install curl && curl -f https://get.pnpm.io/v6.16.js | node - add --global pnpm
|
||||
|
||||
WORKDIR /e2e
|
||||
|
||||
@@ -9,4 +9,3 @@ RUN pnpm fetch
|
||||
|
||||
COPY package.json ./
|
||||
RUN pnpm install -r --offline
|
||||
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 42 KiB After Width: | Height: | Size: 35 KiB |
@@ -34,6 +34,6 @@ Cypress.Commands.add("removeDates", () => {
|
||||
|
||||
Cypress.Commands.add("replaceSkippedElements", () => {
|
||||
cy.window().then((win) =>
|
||||
win.document.querySelectorAll("[data-ci-skip]").forEach((el) => (el.textContent = "**SKIPPED**"))
|
||||
win.document.querySelectorAll("[data-ci-skip]").forEach((el) => (el.style.visibility = "hidden"))
|
||||
);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user