Skip to content

Commit 9aa60b4

Browse files
committed
Fix lint action, fix lint error.
1 parent 7d1c65a commit 9aa60b4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
- run: node version-check.js
2424
- run: npm install
2525
- run: npm test
26-
- run: npm lint
26+
- run: npm run lint
2727

src/config_test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -947,7 +947,9 @@ describe('KubeConfig', () => {
947947
// TODO: inject the exec command here?
948948
const opts = {} as requestlib.Options;
949949
await config.applyToRequest(opts);
950-
expect((KubeConfig as any).authenticators[1].tokenCache['exec']).to.deep.equal(JSON.parse(responseStr));
950+
expect((KubeConfig as any).authenticators[1].tokenCache['exec']).to.deep.equal(
951+
JSON.parse(responseStr),
952+
);
951953
});
952954

953955
it('should throw with no command.', () => {

0 commit comments

Comments
 (0)