Skip to content

Commit dfd61e2

Browse files
committed
Update the README
1 parent 7326b90 commit dfd61e2

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

README.md

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -64,25 +64,26 @@ describe("My First Test", () => {
6464
});
6565
});
6666

67-
// describe('My First Test', () => {
68-
// it('Does not do much!', () => {
69-
// expect(true).to.equal(false)
70-
// })
71-
// })
72-
73-
// To test this locally we need to run the server in one tab and run the tests in another tab
74-
// describe("Launch the website", () => {
75-
// it("Visits the Kitchen Sink", () => {
76-
// cy.visit("http://localhost:8080");
67+
// A test that will always fail
68+
// describe("My First Test", () => {
69+
// it("Does not do much!", () => {
70+
// expect(true).to.equal(false);
7771
// });
7872
// });
7973

80-
describe('My First Test', function() {
81-
it('Visits page', function() {
82-
cy.visit('https://example.cypress.io')
83-
cy.contains('type')
84-
})
85-
})
74+
// To test this locally we need to run the server in one tab and run the tests in another tab
75+
describe("Launch the website", () => {
76+
it("Visits the Kitchen Sink", () => {
77+
cy.visit("http://localhost:8080");
78+
});
79+
});
80+
81+
describe("My First Test", function () {
82+
it("Visits page", function () {
83+
cy.visit("https://example.cypress.io");
84+
cy.contains("type");
85+
});
86+
});
8687
```
8788

8889
To run our Cypress tests on CI specifically Github Actions, we want something like the following in out `.yml` file.

0 commit comments

Comments
 (0)