Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Commit d9d87a1

Browse files
committed
Ignored the proof-of-concept API tests that always fail.
1 parent 0a2185d commit d9d87a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/api/features/sbom.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from "../fixtures";
22

3-
test("List first 10 sboms by name - vanilla", async ({ axios }) => {
3+
test.skip("List first 10 sboms by name - vanilla", async ({ axios }) => {
44
const vanillaResponse = await axios.get(
55
"/api/v2/sbom?limit=10&offset=0&sort=name:asc"
66
);

tests/api/features/vulnerability.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from "../fixtures";
22

3-
test("Filter Vulnerabilities by severity - vanilla", async ({ axios }) => {
3+
test.skip("Filter Vulnerabilities by severity - vanilla", async ({ axios }) => {
44
// URLSearchParams ensures escaping special characters
55
// Without URLSearchParams we would need to do something like:
66
// axios.get("/api/v2/vulnerability?limit=10&offset=0&q=CVE-2023-2%26average_severity%3Dmedium%7Chigh&sort=published:asc")

0 commit comments

Comments
 (0)