From cfd2557cdaf6205219036585d9cacfbbe0ccead0 Mon Sep 17 00:00:00 2001 From: Olly Betts Date: Thu, 20 Oct 2022 11:42:27 +1300 Subject: [PATCH] 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. --- Examples/test-suite/javascript/mod_runme.js | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 Examples/test-suite/javascript/mod_runme.js 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);