git clone from github
This commit is contained in:
8
cypress/e2e/example.cy.js
Normal file
8
cypress/e2e/example.cy.js
Normal 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", "You did it!");
|
||||
});
|
||||
});
|
||||
8
cypress/e2e/jsconfig.json
Normal file
8
cypress/e2e/jsconfig.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"lib": ["es5", "dom"],
|
||||
"types": ["cypress"]
|
||||
},
|
||||
"include": ["./**/*", "../support/**/*"]
|
||||
}
|
||||
Reference in New Issue
Block a user