mirror of
https://github.com/klaussilveira/gitlist.git
synced 2025-11-16 18:56:06 +01:00
11 lines
414 B
JavaScript
11 lines
414 B
JavaScript
describe('Tree navigation', () => {
|
|
it('showing sub-tree and file', () => {
|
|
cy.visit('/git-bare-repo');
|
|
|
|
cy.get(':nth-child(1) > .tree-filename > .tree-truncate > a').click();
|
|
cy.get(':nth-child(2) > .tree-filename > .tree-truncate > a').click();
|
|
cy.get('h5').should('have.text', 'Fixed mm.');
|
|
cy.get('.breadcrumb > .active').should('have.text', '\n cma.c\n ');
|
|
});
|
|
});
|