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