Skip to content

Commit 12f5145

Browse files
committed
Fixing more tests.
1 parent 9daa95f commit 12f5145

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eform-client/cypress/e2e/plugins/backend-configuration-pn/c/task-wizard.create.spec.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ describe('Area rules type 1', () => {
111111
.should('eq', 'Aktiv');
112112
cy.get('.cdk-row .cdk-column-assignedTo mat-chip span.mat-mdc-chip-action-label')
113113
.invoke('text')
114-
.should('have.text', `${workerForCreate.name} ${workerForCreate.surname}`);
114+
.should('eq', `${workerForCreate.name} ${workerForCreate.surname}`);
115115
});
116116
after(() => {
117117
backendConfigurationPropertiesPage.goToProperties();

eform-client/cypress/e2e/plugins/backend-configuration-pn/g/task-wizard.edit-frequency.spec.cy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ describe('Area rules type 1', () => {
232232
.should('have.text', `${editedTask.startFrom.day}.${editedTask.startFrom.month >= 10 ? '' : '0'}${editedTask.startFrom.month}.${editedTask.startFrom.year}`);
233233
cy.get('.cdk-row .cdk-column-repeat mat-chip span.mat-mdc-chip-action-label')
234234
.invoke('text')
235-
.should('eq', `${editedTask.repeatEvery} ${editedTask.repeatType}`);
235+
.should('eq', `${editedTask.repeatType}`);
236236
cy.get('.cdk-row .cdk-column-status mat-chip span.mat-mdc-chip-action-label')
237237
.invoke('text')
238238
.should('eq', 'Aktiv');

0 commit comments

Comments
 (0)