diff --git a/packages/@vue/cli-plugin-e2e-cypress/generator/template/tests/e2e/specs/test.js b/packages/@vue/cli-plugin-e2e-cypress/generator/template/tests/e2e/specs/test.js index 85645d0202..8da9091397 100644 --- a/packages/@vue/cli-plugin-e2e-cypress/generator/template/tests/e2e/specs/test.js +++ b/packages/@vue/cli-plugin-e2e-cypress/generator/template/tests/e2e/specs/test.js @@ -1,7 +1,7 @@ // https://docs.cypress.io/api/introduction/api.html describe('My First Test', () => { - it('Visits the Kitchen Sink', () => { + it('Visits the app root url', () => { cy.visit('/') cy.contains('h1', 'Welcome to Your Vue.js <%- hasTS ? '+ TypeScript ' : '' %>App') })