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
88src /data /markdown /docs /40 xk6-disruptor /01 Get started /04 Expose Your Application.md
99src /data /markdown /docs /40 xk6-disruptor /04 Examples /01 Inject Grpc faults into Service.md
1010src /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
1211src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /100 Test-for-functional-behavior.md
1312src /data /markdown /docs /05 Examples /02 Tutorials /01 Get started with k6 /200 Test for performance.md
1413src /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 }) => {
16991699 isPermanent : true ,
17001700 } ) ;
17011701
1702-
1703-
17041702 const redirects = {
17051703 '/javascript-api/k6-http/cookiejar-k6-http/' :
17061704 '/javascript-api/k6-http/cookiejar/' ,
Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ export function setup() {
187187 expect (resp .status , ' Authenticate status' ).to .equal (200 );
188188 expect (resp, ' Authenticate valid json response' ).to .have .validJsonBody ();
189189 authToken = resp .json (' access' );
190- expect (authToken, ' Authentication token' , ' auth token ' ).to .not . be .null ;
190+ expect (authToken, ' Authentication token' ).to .be .a ( ' string ' ) ;
191191 });
192192
193193 return authToken;
You can’t perform that action at this time.
0 commit comments