Initial vue js setup

This commit is contained in:
benjaminramey
2019-06-29 14:58:19 -05:00
parent 0e821ba5f5
commit 9224aaee5e
43 changed files with 14605 additions and 1 deletions

8
tests/e2e/specs/test.js Normal file
View File

@@ -0,0 +1,8 @@
// https://docs.cypress.io/api/introduction/api.html
describe('My First Test', () => {
it('Visits the app root url', () => {
cy.visit('/')
cy.contains('h1', 'Welcome to Your Vue.js App')
})
})