-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
470 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,13 @@ | ||
describe("Example Test", () => { | ||
it("Visits the app root url", () => { | ||
cy.visit("/"); | ||
cy.contains(".v-card__title", "Welcome to the Vuetify + Nuxt.js template"); | ||
cy.screenshot(); | ||
}); | ||
describe('Example Test', () => { | ||
it('Visits the app root url', () => { | ||
cy.visit('/') | ||
cy.contains('.v-card__title', 'Welcome to the Vuetify + Nuxt.js template') | ||
cy.screenshot() | ||
}) | ||
|
||
it("Go to inspire page", () => { | ||
cy.get("a.v-btn[href='/inspire']").click(); | ||
cy.contains( | ||
"blockquote", | ||
"First, solve the problem. Then, write the code." | ||
); | ||
cy.screenshot(); | ||
}); | ||
}); | ||
it('Go to inspire page', () => { | ||
cy.get("a.v-btn[href='/inspire']").click() | ||
cy.contains('blockquote', 'First, solve the problem. Then, write the code.') | ||
cy.screenshot() | ||
}) | ||
}) |
Oops, something went wrong.