From 70e754ec334d0bb6dea9278ec8330a847d8a7268 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Doreau?= Date: Fri, 14 May 2021 09:53:13 +0200 Subject: [PATCH] fix(app): e2e tests typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rémi Doreau --- packages/app/cypress/integration/techdocs/techdocs.spec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/cypress/integration/techdocs/techdocs.spec.js b/packages/app/cypress/integration/techdocs/techdocs.spec.js index d5b52e71bb..e22a22bc7b 100644 --- a/packages/app/cypress/integration/techdocs/techdocs.spec.js +++ b/packages/app/cypress/integration/techdocs/techdocs.spec.js @@ -78,7 +78,7 @@ describe('TechDocs', () => { ); }); - it('should navigate to a specific TechDocs fragment from a URL', () => { + it('should navigate to a specific TechDocs section from a URL', () => { cy.visit('/docs/default/Component/backstage/overview/roadmap'); cy.window().its('scrollY').should('equal', 0); @@ -89,7 +89,7 @@ describe('TechDocs', () => { }); }); - it('should navigate to a specific TechDocs hash from a URL', () => { + it('should navigate to a specific TechDocs fragment from a URL', () => { cy.visit( '/docs/default/Component/backstage/overview/roadmap/#future-work', );