summaryrefslogtreecommitdiff
path: root/toolkit/components/workerloader/tests/moduleC-circular.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
commit2add0e8cec9d7ff29d2424c877298a85ded95e27 (patch)
treed408e02767c86cf8aac3acbb86722b03c77ede6f /toolkit/components/workerloader/tests/moduleC-circular.js
parent4e2563637cd55288f9e149c88684af3a7e4c0bb1 (diff)
downloaduxp-2add0e8cec9d7ff29d2424c877298a85ded95e27.tar.gz
Issue mcp-graveyard/UXP#439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/components/workerloader/tests/moduleC-circular.js')
-rw-r--r--toolkit/components/workerloader/tests/moduleC-circular.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/toolkit/components/workerloader/tests/moduleC-circular.js b/toolkit/components/workerloader/tests/moduleC-circular.js
deleted file mode 100644
index 5dc14259a4..0000000000
--- a/toolkit/components/workerloader/tests/moduleC-circular.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/* Any copyright is dedicated to the Public Domain.
- * http://creativecommons.org/publicdomain/zero/1.0/ */
-
-// Module C and module D have circular dependencies.
-// This should not prevent from loading them.
-
-// This value is set before any circular dependency, it should be visible
-// in D.
-exports.enteredC = true;
-
-var D = require("chrome://mochitests/content/chrome/toolkit/components/workerloader/tests/moduleD-circular.js");
-
-// The following values are set after importing D.
-// copiedFromD.copiedFromC should have only one field |enteredC|
-exports.copiedFromD = JSON.parse(JSON.stringify(D));
-// exportedFromD.copiedFromC should have all the fields defined in |exports|
-exports.exportedFromD = D;
-exports.finishedC = true;