We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d1c65a commit 9aa60b4Copy full SHA for 9aa60b4
.github/workflows/test.yml
@@ -23,5 +23,5 @@ jobs:
23
- run: node version-check.js
24
- run: npm install
25
- run: npm test
26
- - run: npm lint
+ - run: npm run lint
27
src/config_test.ts
@@ -947,7 +947,9 @@ describe('KubeConfig', () => {
947
// TODO: inject the exec command here?
948
const opts = {} as requestlib.Options;
949
await config.applyToRequest(opts);
950
- expect((KubeConfig as any).authenticators[1].tokenCache['exec']).to.deep.equal(JSON.parse(responseStr));
+ expect((KubeConfig as any).authenticators[1].tokenCache['exec']).to.deep.equal(
951
+ JSON.parse(responseStr),
952
+ );
953
});
954
955
it('should throw with no command.', () => {
0 commit comments