Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

describe('My First Test', () => {
it('Visits the Kitchen Sink', () => {
cy.visit(Cypress.env('VUE_DEV_SERVER_URL'))
cy.visit('/')
cy.contains('h1', 'Welcome to Your Vue.js <%- hasTS ? '+ TypeScript ' : '' %>App')
})
})
2 changes: 1 addition & 1 deletion packages/@vue/cli-plugin-e2e-cypress/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ module.exports = (api, options) => {

const cyArgs = [
command, // open or run
'--env', `VUE_DEV_SERVER_URL=${url}`,
'--config', `baseUrl=${url}`,
...rawArgs
]

Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-plugin-e2e-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"access": "public"
},
"dependencies": {
"cypress": "^1.4.1",
"cypress": "^2.0.3",
"eslint-plugin-cypress": "^2.0.1"
}
}