diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 7b1ae85d..5c78b9b5 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -44,6 +44,15 @@ jobs: # re-enable PR comment bot COMMIT_INFO_SHA: ${{github.event.pull_request.head.sha}} + - name: E2E tests - Upload test artifacts + if: ${{ failure() }} + uses: actions/upload-artifact@v3 + with: + name: cypress-artifacts + path: | + cypress/screenshots/ + cypress/videos/ + - name: Components tests uses: cypress-io/github-action@v5.6.1 with: @@ -60,3 +69,12 @@ jobs: COMMIT_INFO_MESSAGE: ${{github.event.pull_request.title}} # re-enable PR comment bot COMMIT_INFO_SHA: ${{github.event.pull_request.head.sha}} + + - name: Components tests - Upload test artifacts + if: ${{ failure() }} + uses: actions/upload-artifact@v3 + with: + name: cypress-artifacts + path: | + cypress/screenshots/ + cypress/videos/ diff --git a/cypress.config.ts b/cypress.config.ts index 881a0c5a..7d29a7af 100644 --- a/cypress.config.ts +++ b/cypress.config.ts @@ -6,6 +6,10 @@ export const config: Parameters[0] = { setupNodeEvents, baseUrl: "http://localhost:5050", specPattern: "cypress/e2e/**/*.cy.ts", + video: true, + videosFolder: "cypress/videos", + screenshotOnRunFailure: true, + screenshotsFolder: "cypress/screenshots", }, component: { devServer: { diff --git a/cypress/e2e/topNavigation.cy.ts b/cypress/e2e/topNavigation.cy.ts index 13682551..0b3638da 100644 --- a/cypress/e2e/topNavigation.cy.ts +++ b/cypress/e2e/topNavigation.cy.ts @@ -27,7 +27,7 @@ describe("Top navigation test", () => { ["Projects", "Talks", "Blog"].forEach((page) => { it(`Should go to ${page} and back`, () => { cy.get(`@${page.toLowerCase()}`).click(); - cy.location("pathname").should("eq", `/${page.toLowerCase()}`); + cy.location("pathname").should("eq", `/reksio-${page.toLowerCase()}`); cy.get("h2").invoke("text").should("include", page); goBackToHome(); });