mirror of
https://github.com/1024-lab/smart-admin.git
synced 2026-06-02 20:14:59 +00:00
9 lines
206 B
JavaScript
9 lines
206 B
JavaScript
// 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')
|
|
})
|
|
})
|