summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2022-10-20 11:42:27 +1300
committerOlly Betts <olly@survex.com>2022-10-20 11:42:27 +1300
commitcfd2557cdaf6205219036585d9cacfbbe0ccead0 (patch)
tree9768af92fc8eba2e238721edce6e051653e9ee12
parentf40658c2d04feeb3803cf0f3d34d915163b39b10 (diff)
downloadswig-cfd2557cdaf6205219036585d9cacfbbe0ccead0.tar.gz
Revert "[js] Add mod_runme.js"
This reverts commit ea514c39615f616ced604ecbef4b8f42aee8148e. The new runme.js isn't used for node because it fails to run multicpptest testcases, but was failing for jsc in CI. The first problem is the new file is missing `new` where the two objects are created, but fixing that reveals that this testcase is currently broken for Javascript so just revert for now.
-rw-r--r--Examples/test-suite/javascript/mod_runme.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/Examples/test-suite/javascript/mod_runme.js b/Examples/test-suite/javascript/mod_runme.js
deleted file mode 100644
index e317b061d..000000000
--- a/Examples/test-suite/javascript/mod_runme.js
+++ /dev/null
@@ -1,6 +0,0 @@
-var mod_a = require("mod_a");
-var mod_b = require("mod_b");
-
-c = mod_b.C();
-d = mod_b.D();
-d.DoSomething(c);