Explorar o código

Adjust module ids in tests to workaround r.js issue

Alex Dima %!s(int64=8) %!d(string=hai) anos
pai
achega
4ecd94aff9
Modificáronse 1 ficheiros con 4 adicións e 1 borrados
  1. 4 1
      test/all.js

+ 4 - 1
test/all.js

@@ -2,11 +2,14 @@ var requirejs = require("requirejs");
 
 requirejs.config({
     baseUrl: 'out',
+        paths: {
+        'vs/language/typescript': __dirname + '/../out'
+    },
     nodeRequire: require
 });
 
  requirejs([
-     'test/tokenization.test'
+     'vs/language/typescript/test/tokenization.test'
 ], function() {
     run(); // We can launch the tests!
 });