From 9f37786c575bb1d1f9f1e534ccfb8111fe8a0a93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Ribaudo?= Date: Fri, 13 Dec 2024 11:49:27 +0100 Subject: [PATCH] Remove unused fixtures file from SM staging --- test/staging/sm/module/bug1693261-async.mjs | 7 ------- test/staging/sm/module/bug1693261-c1.mjs | 6 ------ test/staging/sm/module/bug1693261-c2.mjs | 6 ------ test/staging/sm/module/bug1693261-x.mjs | 6 ------ 4 files changed, 25 deletions(-) delete mode 100644 test/staging/sm/module/bug1693261-async.mjs delete mode 100644 test/staging/sm/module/bug1693261-c1.mjs delete mode 100644 test/staging/sm/module/bug1693261-c2.mjs delete mode 100644 test/staging/sm/module/bug1693261-x.mjs diff --git a/test/staging/sm/module/bug1693261-async.mjs b/test/staging/sm/module/bug1693261-async.mjs deleted file mode 100644 index bc345e0b4c3..00000000000 --- a/test/staging/sm/module/bug1693261-async.mjs +++ /dev/null @@ -1,7 +0,0 @@ -// |reftest| skip -- support file -if (globalThis.testArray === undefined) { - globalThis.testArray = []; -} -globalThis.testArray.push("async 1"); -await 0; -globalThis.testArray.push("async 2"); diff --git a/test/staging/sm/module/bug1693261-c1.mjs b/test/staging/sm/module/bug1693261-c1.mjs deleted file mode 100644 index 31f42d027e9..00000000000 --- a/test/staging/sm/module/bug1693261-c1.mjs +++ /dev/null @@ -1,6 +0,0 @@ -// |reftest| skip -- support file -import "./bug1693261-async.mjs"; -if (globalThis.testArray === undefined) { - globalThis.testArray = []; -} -globalThis.testArray.push("c1"); diff --git a/test/staging/sm/module/bug1693261-c2.mjs b/test/staging/sm/module/bug1693261-c2.mjs deleted file mode 100644 index e5ceb3079d2..00000000000 --- a/test/staging/sm/module/bug1693261-c2.mjs +++ /dev/null @@ -1,6 +0,0 @@ -// |reftest| skip -- support file -import "./bug1693261-async.mjs"; -if (globalThis.testArray === undefined) { - globalThis.testArray = []; -} -globalThis.testArray.push("c2"); diff --git a/test/staging/sm/module/bug1693261-x.mjs b/test/staging/sm/module/bug1693261-x.mjs deleted file mode 100644 index 4c73867e586..00000000000 --- a/test/staging/sm/module/bug1693261-x.mjs +++ /dev/null @@ -1,6 +0,0 @@ -// |reftest| skip -- support file -import "./bug1693261-c1.mjs"; -if (globalThis.testArray === undefined) { - globalThis.testArray = []; -} -globalThis.testArray.push("x");