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', () => {
2222 it ( 'should not accept invalid query parameter override' , ( ) => {
2323 cy . visit ( `/?config=${ JSON . stringify ( { urlProperty : 'not a url' } ) } ` ) ;
2424
25- cy . get ( 'body' ) . should ( 'contain' , `Config Error: should match format "uri"` ) ;
25+ cy . get ( 'body' ) . should ( 'contain' , `Config Error: must match format "uri"` ) ;
2626 } ) ;
2727
2828 it ( 'should not accept invalid longStringProperty' , ( ) => {
2929 cy . visit ( `/?config=${ JSON . stringify ( { longStringProperty : 'short' } ) } ` ) ;
3030
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` ) ;
3232 } ) ;
3333} ) ;
You can’t perform that action at this time.
0 commit comments