Skip to content

Commit f32749c

Browse files
committed
fix test
1 parent 81d6dc7 commit f32749c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cypress/e2e/nav_b_language.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
describe('Create path', () => {
1+
describe('Change language', () => {
22
beforeEach(() => {
33
const username = 'admin';
44
const password = 'admin';
55
cy.loginByCSRF(username, password);
66
});
77

8-
it('Change language', () => {
8+
it('Can change language', () => {
99
cy.visit('/path/list');
1010
cy.get("a.dropdown-toggle").contains('admin').click();
1111
cy.get("button.dropdown-item[value='fr']").click();

cypress/e2e/nav_create_path.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe('Create path', () => {
3737
cy.get('.content').should('contain', 'Path number 2');
3838
});
3939

40-
it('Path list', () => {
40+
it('Check resulting path list', () => {
4141
cy.visit('/path/list');
4242
cy.get("a[title='Path number 1']").should('have.length', 2);
4343
cy.get("a[title='Path number 2']").should('have.length', 2);

0 commit comments

Comments
 (0)