Skip to content

Commit

Permalink
fix tests increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagobcx committed Nov 11, 2021
1 parent 8b046dd commit 0f9330c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/ScanTest.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ describe("ScanCreate cases",() => {
let cxScanConfig = new BaseTest();
it('ScanList Successful case', async () => {
const auth = new CxWrapper(cxScanConfig);
const cxCommandOutput: CxCommandOutput = await auth.scanList("");
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));
expect(cxCommandOutput.payload.length).toBeGreaterThan(0);
});

Expand Down

0 comments on commit 0f9330c

Please sign in to comment.