8144-devToTest_2448 #963

Merged
alexm merged 347 commits from 8144-devToTest_2448 into test 2024-11-19 07:54:42 +00:00
3 changed files with 3 additions and 9 deletions
Showing only changes of commit 02f682ac0b - Show all commits

View File

@ -28,7 +28,7 @@ describe('Client list', () => {
cy.get('.q-mt-lg > .q-btn--standard').click();
cy.checkNotification('created');
cy.checkNotification('Data created');
cy.url().should('include', '/summary');
});
it('Client list search client', () => {

View File

@ -11,7 +11,7 @@ describe('AgencyWorkCenter', () => {
// create
cy.get(createButton).click();
cy.get(workCenterCombobox).type('workCenterOne{enter}');
cy.checkNotification('created');
cy.checkNotification('Data created');
// expect error when duplicate
cy.get(createButton).click();

View File

@ -274,13 +274,7 @@ Cypress.Commands.add('openActions', (row) => {
cy.get('tbody > tr').eq(row).find('.actions > .q-btn').click();
});
Cypress.Commands.add('checkNotification', (tag) => {
const defaultTags = {
created: 'Data created',
updated: 'Data saved',
deleted: 'Data deleted',
}; //last
const text = defaultTags[tag] ?? tag;
Cypress.Commands.add('checkNotification', (text) => {
cy.get('.q-notification')
.should('be.visible')
.last()