From 3df35de3305a01bf67aef12f166b598c9afda424 Mon Sep 17 00:00:00 2001 From: Anthony Fu Date: Sun, 24 Jul 2022 19:45:42 +0800 Subject: [PATCH] chore: fix e2e test --- cypress/e2e/basic.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/basic.spec.ts b/cypress/e2e/basic.spec.ts index 9c60332..55a838f 100644 --- a/cypress/e2e/basic.spec.ts +++ b/cypress/e2e/basic.spec.ts @@ -30,7 +30,7 @@ context('Basic', () => { .url() .should('eq', 'http://localhost:3333/about') - cy.get('pre.language-js') + cy.get('.shiki') .should('exist') }) })