Skip to content

Commit f1007c0

Browse files
committed
Skip on custom state tests.
1 parent dc4ccd2 commit f1007c0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/tests/PredicateTest.test.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ describe("Triage cases", () => {
4646
await handleTriageUpdate(scan, result, result.state, result.severity.toLowerCase() === "high" ? CxConstants.SEVERITY_MEDIUM : CxConstants.SEVERITY_HIGH);
4747
});
4848

49-
it('Triage with custom state Successful case', async () => {
49+
it.skip('Triage with custom state Successful case', async () => {
5050
const { scan, result } = await getScanAndResult();
5151

5252
const cxCommandOutput: CxCommandOutput = await auth.triageGetStates();
@@ -65,7 +65,9 @@ describe("Triage cases", () => {
6565
}
6666
await handleTriageUpdate(scan, result, customState, CxConstants.SEVERITY_MEDIUM);
6767

68-
}); it('Triage with custom state id Successful case', async () => {
68+
});
69+
70+
it.skip('Triage with custom state id Successful case', async () => {
6971
const { scan, result } = await getScanAndResult();
7072

7173
const cxCommandOutput: CxCommandOutput = await auth.triageGetStates();

0 commit comments

Comments
 (0)