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 26d7963 commit b46f365Copy full SHA for b46f365
src/tests/ScanTest.test.ts
@@ -7,7 +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("");
+ let cxCommandOutput: CxCommandOutput = await auth.scanList("");
11
+ cxCommandOutput = await auth.scanList("");
12
expect(cxCommandOutput.payload.length).toBeGreaterThan(0);
13
});
14
it('ScanCreate Successful case wait mode', async () => {
0 commit comments