Skip to content

Commit ef4196d

Browse files
rm skip from test for oss
1 parent 99ae0ab commit ef4196d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tests/ScanTest.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,15 @@ describe("ScanCreate cases", () => {
174174
expect(typeof scanObject.scanDetails[0].description).toBe('string');
175175
});
176176

177-
it.skip('ScanOss Successful case', async () => {
177+
it('ScanOss Successful case', async () => {
178178
const wrapper = new CxWrapper(cxScanConfig);
179179
const cxCommandOutput: CxCommandOutput = await wrapper.ossScanResults("tsc/tests/data/package.json");
180180
console.log("Json object from scanOSS successful case: " + JSON.stringify(cxCommandOutput));
181181
expect(cxCommandOutput.payload).toBeDefined();
182182
expect(cxCommandOutput.exitCode).toBe(0);
183183
});
184184

185-
it.skip('ScanSecrets Successful case', async () => {
185+
it('ScanSecrets Successful case', async () => {
186186
const wrapper = new CxWrapper(cxScanConfig);
187187
const cxCommandOutput: CxCommandOutput = await wrapper.secretsScanResults("tsc/tests/data/secret-exposed.txt");
188188
console.log("Json object from scanOSS successful case: " + JSON.stringify(cxCommandOutput));

0 commit comments

Comments
 (0)