mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-15 10:16:04 +01:00
8 lines
222 B
JavaScript
8 lines
222 B
JavaScript
describe('Repository list page', () => {
|
|
it('successfully loads', () => {
|
|
cy.visit('/');
|
|
cy.get('.card-header').should('contain', 'git-bare-repo');
|
|
cy.get('.card-body').should('contain', 'foobar');
|
|
});
|
|
});
|