Linting tests

This commit is contained in:
2020-12-08 18:13:41 +01:00
parent b5ceae6c00
commit b7f1e71cbb
6 changed files with 20 additions and 23 deletions

View File

@@ -1,8 +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');
describe("My First Test", () => {
it("Visits the app root url", () => {
cy.visit("/");
cy.contains("h1", "Welcome to Your Vue.js App");
});
});