Commit 28ea21f 1 parent f1b8a6f commit 28ea21f Copy full SHA for 28ea21f
File tree 4 files changed +4
-0
lines changed
examples/recording/cypress/e2e
4 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1
1
it ( 'spec-A works' , ( ) => {
2
2
expect ( 42 ) . to . equal ( 21 + 21 )
3
+ // eslint-disable-next-line cypress/no-unnecessary-waiting
3
4
cy . visit ( 'https://example.cypress.io' ) . wait ( 2000 )
4
5
} )
Original file line number Diff line number Diff line change 1
1
it ( 'spec-B works' , ( ) => {
2
2
expect ( 42 ) . to . equal ( 21 + 21 )
3
+ // eslint-disable-next-line cypress/no-unnecessary-waiting
3
4
cy . visit ( 'https://example.cypress.io' ) . wait ( 5000 )
4
5
} )
Original file line number Diff line number Diff line change 1
1
it ( 'spec-C works' , ( ) => {
2
2
expect ( 42 ) . to . equal ( 21 + 21 )
3
+ // eslint-disable-next-line cypress/no-unnecessary-waiting
3
4
cy . visit ( 'https://example.cypress.io' ) . wait ( 4000 )
4
5
} )
Original file line number Diff line number Diff line change 1
1
it ( 'spec-D works' , ( ) => {
2
2
expect ( 42 ) . to . equal ( 21 + 21 )
3
+ // eslint-disable-next-line cypress/no-unnecessary-waiting
3
4
cy . visit ( 'https://example.cypress.io' ) . wait ( 3600 )
4
5
} )
You can’t perform that action at this time.
0 commit comments