diff options
Diffstat (limited to 'js/src/tests/non262/module/bug1693261-c1.mjs')
-rw-r--r-- | js/src/tests/non262/module/bug1693261-c1.mjs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/js/src/tests/non262/module/bug1693261-c1.mjs b/js/src/tests/non262/module/bug1693261-c1.mjs new file mode 100644 index 0000000000..31f42d027e --- /dev/null +++ b/js/src/tests/non262/module/bug1693261-c1.mjs @@ -0,0 +1,6 @@ +// |reftest| skip -- support file +import "./bug1693261-async.mjs"; +if (globalThis.testArray === undefined) { + globalThis.testArray = []; +} +globalThis.testArray.push("c1"); |