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 8b046dd commit 0f9330cCopy full SHA for 0f9330c
src/tests/ScanTest.test.ts
@@ -7,8 +7,8 @@ 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("");
11
- console.log(" Json object from scanList successful case: " + JSON.stringify(CxCommandOutput));
+ const cxCommandOutput: CxCommandOutput = await auth.scanList("limit=25");
+ console.log(" Json object from scanList successful case: " + JSON.stringify(cxCommandOutput));
12
expect(cxCommandOutput.payload.length).toBeGreaterThan(0);
13
});
14
0 commit comments