Tries to fix int tests

This commit is contained in:
Amir Raminfar
2022-04-20 15:47:10 -07:00
parent 0cac350493
commit b1fa9ea672
3 changed files with 3 additions and 4 deletions

View File

@@ -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

View File

@@ -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"))
);
});