Skip to content

Commit 9b9c312

Browse files
authored
Merge pull request #47 from jmp/fix-stats-page-test
Fix stats page Cypress test
2 parents 2f287e7 + a0c324e commit 9b9c312

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cypress/cypress/e2e/smoketest.cy.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ describe('Mob.sh Timer', () => {
1212
})
1313

1414
it('help page is available', () => {
15-
cy.visit('https://timer.mob.sh/help' + roomId)
15+
cy.visit('https://timer.mob.sh/help')
1616
cy.contains('Help')
1717
})
1818

1919
it('stats page is available', () => {
20-
cy.visit('https://timer.mob.sh/help' + roomId)
21-
cy.contains('Help')
20+
cy.visit('https://timer.mob.sh/stats')
21+
cy.contains('Stats')
2222
})
2323

2424
it('mob timer works', () => {

0 commit comments

Comments
 (0)