Skip to content

Commit 25b3633

Browse files
committed
fix: more ajv error messages
1 parent b4e9463 commit 25b3633

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/webpack-projects/cypress-plugin/cypress/integration/main.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('Config Loading', () => {
3232

3333
cy.visit('/');
3434

35-
cy.get('body').should('contain', `Config Error: should NOT have fewer than 10 characters`);
35+
cy.get('body').should('contain', `Config Error: must NOT have fewer than 10 characters`);
3636
});
3737

3838
it('uses config from webpack preprocessor', () => {

tests/webpack-projects/webpack5/cypress/integration/main.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('Config Loading', () => {
3232

3333
cy.visit('/');
3434

35-
cy.get('body').should('contain', `Config Error: should NOT have fewer than 10 characters`);
35+
cy.get('body').should('contain', `Config Error: must NOT have fewer than 10 characters`);
3636
});
3737

3838
it('uses config from webpack preprocessor', () => {

0 commit comments

Comments
 (0)