Skip to content

Commit 53992cc

Browse files
committed
Add end-to-end test for index file hosting
1 parent 1f3ae01 commit 53992cc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
context('routing.indexFile', () => {
2+
it('handles index file routing', () => {
3+
cy.visit('http://localhost:3000/index.html');
4+
5+
cy.get('.sidebar-nav').contains('Changelog').click();
6+
7+
cy.get('#main').should('contain', 'Bug Fixes');
8+
})
9+
});

0 commit comments

Comments
 (0)