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 eb83445 commit 568ed1bCopy full SHA for 568ed1b
src/tests/ScanTest.test.ts
@@ -12,7 +12,8 @@ describe("ScanCreate cases",() => {
12
params.set(CxParamType.FILTER, "*.ts,!**/node_modules/**/*");
13
params.set(CxParamType.BRANCH, "master");
14
const auth = new CxWrapper(cxScanConfig);
15
- const cxCommandOutput: CxCommandOutput = await auth.scanCreate(params);
+ const data = await auth.scanCreate(params);
16
+ const cxCommandOutput: CxCommandOutput = data;
17
const scanObject = cxCommandOutput.payload.pop();
18
const scanShowObject = await auth.scanShow(scanObject.ID);
19
console.log(" Json object from successful wait mode case: " + JSON.stringify(scanShowObject));
0 commit comments