Skip to content

Commit 082333b

Browse files
committed
test
1 parent bef719a commit 082333b

File tree

2 files changed

+15
-6
lines changed

2 files changed

+15
-6
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,6 @@ https://docs.cypress.io/guides/overview/why-cypress.html#Cypress-in-the-Real-Wor
3131

3232
https://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

cypress/integration/sample_spec.js

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff 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+
})

0 commit comments

Comments
 (0)