Skip to content

Commit

Permalink
Fix capital case on Knowledge Box (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpellerin42 authored Oct 9, 2023
1 parent 53e4c19 commit 5d31222
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/1-basic/2-kb-creation-flow.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ describe('KB creation flow', () => {
cy.login();

goTo('Manage account');
goTo('Knowledge boxes');
cy.contains('Add knowledge box').click();
goTo('Knowledge Boxes');
cy.contains('Add Knowledge Box').click();
cy.get('app-kb-add [formcontrolname="title"] input').type(KB_NAME);
cy.get('app-kb-add [formcontrolname="description"] textarea').type('Some kb');
cy.get('app-kb-add').contains('Next').click();
Expand All @@ -35,7 +35,7 @@ describe('KB creation flow', () => {
it('should allow to delete the kb', () => {
cy.loginToNewKb();
goTo('Manage account');
goTo('Knowledge boxes');
goTo('Knowledge Boxes');
cy.get(`[data-cy="${KB_NAME}-link"]`).contains(KB_NAME);
cy.get(`[data-cy="${KB_NAME}-delete"]`).click();
cy.get('[qa="confirmation-dialog-confirm-button"]').click();
Expand Down

0 comments on commit 5d31222

Please sign in to comment.