Revert "[js] Add mod_runme.js"

This reverts commit ea514c3961.

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.
This commit is contained in:
Olly Betts 2022-10-20 11:42:27 +13:00
commit cfd2557cda

View file

@ -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);