mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-17 19:20:56 +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');
|
|
});
|
|
});
|