File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
system-tests/project-fixtures/runner-specs/cypress/e2e/runner/ui-states Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ describe('Errors', () => {
6
6
} )
7
7
8
8
it ( 'long error' , ( ) => {
9
- cy . request ( 'http://httpstat.us/500' )
9
+ // @see https://github.com/aaronpowell/httpstatus/issues/135
10
+ cy . request ( 'https://httpstatuses.maor.io/500' )
10
11
} )
11
12
} )
Original file line number Diff line number Diff line change 1
1
describe ( 'Status Codes' , ( ) => {
2
2
it ( 'Request Statuses' , ( ) => {
3
- cy . request ( 'https://httpstat.us/200' )
4
- cy . request ( 'https://httpstat.us/304' )
3
+ // @see https://github.com/aaronpowell/httpstatus/issues/135
4
+ cy . request ( 'https://httpstatuses.maor.io/200' )
5
+ cy . request ( 'https://httpstatuses.maor.io/304' )
5
6
6
7
cy . request ( {
7
- url : 'https://httpstat.us /400' ,
8
+ url : 'https://httpstatuses.maor.io /400' ,
8
9
failOnStatusCode : false ,
9
10
} )
10
11
11
12
cy . request ( {
12
- url : 'https://httpstat.us /502' ,
13
+ url : 'https://httpstatuses.maor.io /502' ,
13
14
failOnStatusCode : false ,
14
15
} )
15
16
16
17
cy . request ( {
17
- url : 'https://httpstat.us /103' ,
18
+ url : 'https://httpstatuses.maor.io /103' ,
18
19
timeout : 2000 ,
19
20
} )
20
21
} )
You can’t perform that action at this time.
0 commit comments