File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -31,4 +31,6 @@ https://docs.cypress.io/guides/overview/why-cypress.html#Cypress-in-the-Real-Wor
3131
3232https://docs.cypress.io/guides/overview/why-cypress.html#In-a-nutshell
3333
34- https://www.345tool.com/blog/automate-node-js-website-e2e-test-with-cypress-and-github-actions
34+ https://www.345tool.com/blog/automate-node-js-website-e2e-test-with-cypress-and-github-actions
35+
36+ https://docs.cypress.io/guides/continuous-integration/github-actions.html#Cypress-Real-World-Example-with-GitHub-Actions
Original file line number Diff line number Diff line change @@ -10,8 +10,15 @@ describe("My First Test", () => {
1010// })
1111// })
1212
13- describe ( "Launch the website" , ( ) => {
14- it ( "Visits the Kitchen Sink" , ( ) => {
15- cy . visit ( "http://localhost:8080" ) ;
16- } ) ;
17- } ) ;
13+ // describe("Launch the website", () => {
14+ // it("Visits the Kitchen Sink", () => {
15+ // cy.visit("http://localhost:8080");
16+ // });
17+ // });
18+
19+ describe ( 'My First Test' , function ( ) {
20+ it ( 'Visits page' , function ( ) {
21+ cy . visit ( 'https://example.cypress.io' )
22+ cy . contains ( 'type' )
23+ } )
24+ } )
You can’t perform that action at this time.
0 commit comments