mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 15:05:39 +01:00
15 lines
No EOL
326 B
JavaScript
15 lines
No EOL
326 B
JavaScript
var requirejs = require("requirejs");
|
|
|
|
requirejs.config({
|
|
baseUrl: 'out',
|
|
paths: {
|
|
'vs/language/typescript': __dirname + '/../out'
|
|
},
|
|
nodeRequire: require
|
|
});
|
|
|
|
requirejs([
|
|
'vs/language/typescript/test/tokenization.test'
|
|
], function() {
|
|
run(); // We can launch the tests!
|
|
}); |