Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix capital case on Knowledge Box #12

Merged
merged 1 commit into from
Oct 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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