Skip to content

Commit bef719a

Browse files
committed
test
1 parent df2f296 commit bef719a

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ on: [push]
33
jobs:
44
cypress-run:
55
runs-on: ubuntu-latest
6+
container: cypress/browsers:node12.18.3-chrome87-ff82
67
steps:
78
- name: Checkout
89
uses: actions/checkout@v1

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ https://docs.cypress.io/guides/getting-started/writing-your-first-test.html#Writ
2929

3030
https://docs.cypress.io/guides/overview/why-cypress.html#Cypress-in-the-Real-World
3131

32-
https://docs.cypress.io/guides/overview/why-cypress.html#In-a-nutshell
32+
https://docs.cypress.io/guides/overview/why-cypress.html#In-a-nutshell
33+
34+
https://www.345tool.com/blog/automate-node-js-website-e2e-test-with-cypress-and-github-actions

cypress/integration/sample_spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ 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+
});

0 commit comments

Comments
 (0)