From 432cd94479a15a226fb53f30924b61179861cfdc Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Tue, 22 Aug 2023 14:37:16 -0400 Subject: [PATCH] Make web test less janky --- web/cypress/e2e/basic.cy.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/cypress/e2e/basic.cy.js b/web/cypress/e2e/basic.cy.js index efea8b41..d459623d 100644 --- a/web/cypress/e2e/basic.cy.js +++ b/web/cypress/e2e/basic.cy.js @@ -27,7 +27,8 @@ describe('check variables', () => { cy.get('[data-cy="page-heading"]').contains(/^Variables$/) }) it('has anchor links and can focus on them', () => { - cy.get('[data-anchor-name="cpu"]').click().and('be.visible') + cy.get('[data-anchor-name="acpiacadapter"]').click() + cy.get('[data-anchor-name="acpiacadapter"]').and('be.visible') }) }) describe('check lua', () => {