From 43864be73df5efe1add6512a25f2f432510bd753 Mon Sep 17 00:00:00 2001 From: Marlene Wanberg Date: Mon, 28 Mar 2022 11:53:25 -0700 Subject: [PATCH] test(carousel): remove extra slash prefix from a path Co-authored-by: kennylam --- .../e2e-storybook/cypress/integration/carousel/carousel.e2e.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-components/tests/e2e-storybook/cypress/integration/carousel/carousel.e2e.js b/packages/web-components/tests/e2e-storybook/cypress/integration/carousel/carousel.e2e.js index 55d9b661faf..5f2e235b33f 100644 --- a/packages/web-components/tests/e2e-storybook/cypress/integration/carousel/carousel.e2e.js +++ b/packages/web-components/tests/e2e-storybook/cypress/integration/carousel/carousel.e2e.js @@ -238,7 +238,7 @@ describe('dds-carousel | default (desktop)', () => { describe('dds-carousel | default (mobile)', () => { beforeEach(() => { cy.viewport(320, 720); - cy.visit(`/${_paths.default}`); + cy.visit(`${_paths.default}`); cy.injectAxe(); });