mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-15 10:16:04 +01:00
9 lines
323 B
JavaScript
9 lines
323 B
JavaScript
describe('Repository branches page', () => {
|
|
it('successfully loads', () => {
|
|
cy.visit('/git-bare-repo/branches');
|
|
|
|
cy.get('.card-header').should('have.text', '\n Remote branches\n ');
|
|
cy.get(':nth-child(2) > h5 > a').should('have.text', '\n master\n ');
|
|
});
|
|
});
|