diff --git a/test/staging/sm/module/bug1693261-async.mjs b/test/staging/sm/module/bug1693261-async.mjs deleted file mode 100644 index bc345e0b4c..0000000000 --- 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 31f42d027e..0000000000 --- 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 e5ceb3079d..0000000000 --- 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 4c73867e58..0000000000 --- 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");