From 87bba37219d708eaca6242a7ae29adfd47384d64 Mon Sep 17 00:00:00 2001 From: Heiko Kiesel Date: Wed, 23 Aug 2023 14:07:22 +0200 Subject: [PATCH] #1162 Remove skipped test against securecodebox.io Signed-off-by: Heiko Kiesel --- scanners/nuclei/integration-tests/nuclei.test.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/scanners/nuclei/integration-tests/nuclei.test.js b/scanners/nuclei/integration-tests/nuclei.test.js index b5f7829821..a9c85ddf61 100644 --- a/scanners/nuclei/integration-tests/nuclei.test.js +++ b/scanners/nuclei/integration-tests/nuclei.test.js @@ -23,19 +23,3 @@ test( }, 3 * 60 * 1000 ); - -test.skip( - "Nuclei scan for a vulnerable demo target", - async () => { - const { categories, severities, count } = await scan( - "nuclei-scb", - "nuclei", - ["-no-interactsh", "-u", "http://www.secureCodeBox.io"], - 300 - ); - - expect(count).toBeGreaterThanOrEqual(1); - expect(severities["informational"]).toBeGreaterThanOrEqual(1); - }, - 5 * 60 * 1000 -);