diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index be0b7b8..1820acd 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -25,6 +25,9 @@ jobs: - name: Run Build run: npx next build + - name: Run Jest Tests + run: npm test + - name: Update Cypress Cache run: npx cypress cache clear diff --git a/.gitignore b/.gitignore index cabda36..c4df569 100644 --- a/.gitignore +++ b/.gitignore @@ -35,4 +35,5 @@ yarn-error.log* *.tsbuildinfo next-env.d.ts -src/config.ts \ No newline at end of file +src/config.ts +cypress/screenshots diff --git a/cypress/e2e/integrations/companies.cy.js b/cypress/e2e/integrations/companies.cy.js index 837a281..b5b614e 100644 --- a/cypress/e2e/integrations/companies.cy.js +++ b/cypress/e2e/integrations/companies.cy.js @@ -49,4 +49,5 @@ describe(TEST_NAME, () => { cy.get("table").should("exist"); cy.get("form").should("not.exist"); }); -}); \ No newline at end of file +}); + diff --git a/cypress/e2e/integrations/connections.cy.js b/cypress/e2e/integrations/connections.cy.js index 80c9880..f8331ef 100644 --- a/cypress/e2e/integrations/connections.cy.js +++ b/cypress/e2e/integrations/connections.cy.js @@ -49,4 +49,5 @@ describe(TEST_NAME, () => { cy.get("table").should("exist"); cy.get("form").should("not.exist"); }); -}); \ No newline at end of file +}); +