From fd6cf3889f3ccb2f279f4f070d0568eee02515e8 Mon Sep 17 00:00:00 2001 From: JFH Date: Thu, 6 Aug 2020 21:46:30 +0200 Subject: [PATCH] fix integration tests --- badges/coverage-badge.svg | 2 +- badges/tests-badge.svg | 2 +- cypress/integration/ui/accessibility.js | 2 +- cypress/support/ui-test-helper.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/badges/coverage-badge.svg b/badges/coverage-badge.svg index 7ec30fa8..8df4ec3e 100644 --- a/badges/coverage-badge.svg +++ b/badges/coverage-badge.svg @@ -1 +1 @@ -Statements 45.57%Statements 45.57%Branches 34.06%Branches 34.06%Lines 46.73%Lines 46.73%Functions 51.69%Functions 51.69% +Statements 43.31%Statements 43.31%Branches 32.3%Branches 32.3%Lines 44.45%Lines 44.45%Functions 48.9%Functions 48.9% diff --git a/badges/tests-badge.svg b/badges/tests-badge.svg index 0d1ca370..ef7370d8 100644 --- a/badges/tests-badge.svg +++ b/badges/tests-badge.svg @@ -1 +1 @@ -TestsTests132/132132/132 \ No newline at end of file +TestsTests129/132129/132 \ No newline at end of file diff --git a/cypress/integration/ui/accessibility.js b/cypress/integration/ui/accessibility.js index b1363b03..688e9ed6 100644 --- a/cypress/integration/ui/accessibility.js +++ b/cypress/integration/ui/accessibility.js @@ -1,6 +1,6 @@ describe('UI - Accessibility', function () { beforeEach(() => { - cy.visit('/instrumented/editor/svg-editor-es.html'); + cy.visit('/instrumented/editor'); cy.injectAxe(); }); diff --git a/cypress/support/ui-test-helper.js b/cypress/support/ui-test-helper.js index 69d28514..fec08e69 100644 --- a/cypress/support/ui-test-helper.js +++ b/cypress/support/ui-test-helper.js @@ -4,7 +4,7 @@ export const approveStorage = () => { }; export const visitAndApproveStorage = () => { - cy.visit('/instrumented/editor/svg-editor-es.html'); + cy.visit('/instrumented/editor'); approveStorage(); };