From d23d64c2a02e2a8012e3f4c535d74995db04dcc3 Mon Sep 17 00:00:00 2001 From: Andrew Gaspar Date: Thu, 15 Aug 2013 19:48:49 -0500 Subject: [PATCH] tests now run with module flag set to commonjs --- _infrastructure/tests/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_infrastructure/tests/runner.js b/_infrastructure/tests/runner.js index 21e6e2ac13..99e5c22a6a 100644 --- a/_infrastructure/tests/runner.js +++ b/_infrastructure/tests/runner.js @@ -537,7 +537,7 @@ var DefinitelyTyped; function Tsc() { } Tsc.run = function (tsfile, callback) { - Exec.exec('node ./_infrastructure/tests/typescript/tsc.js ', [tsfile], function (ExecResult) { + Exec.exec('node ./_infrastructure/tests/typescript/tsc.js --module commonjs ', [tsfile], function (ExecResult) { callback(ExecResult); }); };