Skip to content

Commit bb431f0

Browse files
committed
fix lint errors
1 parent 05e84fd commit bb431f0

File tree

3 files changed

+1
-4
lines changed

3 files changed

+1
-4
lines changed

.eslintignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ src/data/markdown/docs/40 xk6-disruptor/01 Get started/01 Welcome.md
88
src/data/markdown/docs/40 xk6-disruptor/01 Get started/04 Expose Your Application.md
99
src/data/markdown/docs/40 xk6-disruptor/04 Examples/01 Inject Grpc faults into Service.md
1010
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
1211
src/data/markdown/docs/05 Examples/02 Tutorials/01 Get started with k6/100 Test-for-functional-behavior.md
1312
src/data/markdown/docs/05 Examples/02 Tutorials/01 Get started with k6/200 Test for performance.md
1413
src/data/markdown/docs/05 Examples/02 Tutorials/01 Get started with k6/400 Reuse and re-run tests.md

gatsby-node.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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/',

src/data/markdown/docs/05 Examples/01 Examples/10 api-crud-operations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)