File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/webpack-projects/query-parameter-overrides/cypress/integration Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,12 @@ describe('Config Loading', () => {
22
22
it ( 'should not accept invalid query parameter override' , ( ) => {
23
23
cy . visit ( `/?config=${ JSON . stringify ( { urlProperty : 'not a url' } ) } ` ) ;
24
24
25
- cy . get ( 'body' ) . should ( 'contain' , `Config Error: should match format "uri"` ) ;
25
+ cy . get ( 'body' ) . should ( 'contain' , `Config Error: must match format "uri"` ) ;
26
26
} ) ;
27
27
28
28
it ( 'should not accept invalid longStringProperty' , ( ) => {
29
29
cy . visit ( `/?config=${ JSON . stringify ( { longStringProperty : 'short' } ) } ` ) ;
30
30
31
- cy . get ( 'body' ) . should ( 'contain' , `Config Error: should NOT have fewer than 10 characters` ) ;
31
+ cy . get ( 'body' ) . should ( 'contain' , `Config Error: must NOT have fewer than 10 characters` ) ;
32
32
} ) ;
33
33
} ) ;
You can’t perform that action at this time.
0 commit comments