File tree Expand file tree Collapse file tree 3 files changed +1
-4
lines changed
src/data/markdown/docs/05 Examples/01 Examples Expand file tree Collapse file tree 3 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ src/data/markdown/docs/40 xk6-disruptor/01 Get started/01 Welcome.md
8
8
src /data /markdown /docs /40 xk6-disruptor /01 Get started /04 Expose Your Application.md
9
9
src /data /markdown /docs /40 xk6-disruptor /04 Examples /01 Inject Grpc faults into Service.md
10
10
src /data /markdown /docs /40 xk6-disruptor /04 Examples /02 Inject HTTP faults into Pod.md
11
- src /data /markdown /docs /05 Examples /01 Examples /10 api-crud-operations.md
12
11
src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /100 Test-for-functional-behavior.md
13
12
src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /200 Test for performance.md
14
13
src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /400 Reuse and re-run tests.md
Original file line number Diff line number Diff line change @@ -1699,8 +1699,6 @@ const createRedirects = ({ actions }) => {
1699
1699
isPermanent : true ,
1700
1700
} ) ;
1701
1701
1702
-
1703
-
1704
1702
const redirects = {
1705
1703
'/javascript-api/k6-http/cookiejar-k6-http/' :
1706
1704
'/javascript-api/k6-http/cookiejar/' ,
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export function setup() {
187
187
expect (resp .status , ' Authenticate status' ).to .equal (200 );
188
188
expect (resp, ' Authenticate valid json response' ).to .have .validJsonBody ();
189
189
authToken = resp .json (' access' );
190
- expect (authToken, ' Authentication token' , ' auth token ' ).to .not . be .null ;
190
+ expect (authToken, ' Authentication token' ).to .be .a ( ' string ' ) ;
191
191
});
192
192
193
193
return authToken;
You can’t perform that action at this time.
0 commit comments