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 6404d94 commit f6d7bf3Copy full SHA for f6d7bf3
src/tests/AuthTest.test.ts
@@ -18,7 +18,7 @@ describe("Authentication validation", () => {
18
cxScanConfig_fail.clientSecret = "error";
19
cxScanConfig_fail.tenant = process.env["CX_TENANT"];
20
cxScanConfig_fail.apiKey = "error";
21
- let auth = await CxWrapperFactory.createWrapper(cxScanConfig_fail);
+ const auth = await CxWrapperFactory.createWrapper(cxScanConfig_fail);
22
const cxCommandOutput: CxCommandOutput = await auth.authValidate();
23
expect(cxCommandOutput.exitCode).toBe(1);
24
});
0 commit comments