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 0f9330c commit e84e576Copy full SHA for e84e576
src/tests/ScanTest.test.ts
@@ -7,9 +7,9 @@ describe("ScanCreate cases",() => {
7
let cxScanConfig = new BaseTest();
8
it('ScanList Successful case', async () => {
9
const auth = new CxWrapper(cxScanConfig);
10
- const cxCommandOutput: CxCommandOutput = await auth.scanList("limit=25");
+ const cxCommandOutput: CxCommandOutput = await auth.scanList("");
11
console.log(" Json object from scanList successful case: " + JSON.stringify(cxCommandOutput));
12
- expect(cxCommandOutput.payload.length).toBeGreaterThan(0);
+ expect(cxCommandOutput.exitCode).toBe(0);
13
});
14
15
it('ScanCreate Successful case wait mode', async () => {
0 commit comments