From e6b74a753e2171afab48584ca2d0f8fc69ae51e6 Mon Sep 17 00:00:00 2001 From: Chris Date: Mon, 19 Mar 2018 14:25:43 -0600 Subject: [PATCH] Update Cypress test.js test description The Cypress initial test visits Cypress's sample app, Kitchen Sink. It seems for the initial Vue app, it should visit the app root url (or home/main/first page?). --- .../generator/template/tests/e2e/specs/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') })