Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/web/client/tests/e2e/specs/test.js
994 views
1
// https://docs.cypress.io/api/introduction/api.html
2
3
describe("My First Test", () => {
4
it("Visits the app root url", () => {
5
cy.visit("/");
6
cy.contains("h1", "Welcome to Your Vue.js + TypeScript App");
7
});
8
});
9
10