1
0
mirror of synced 2025-12-13 10:04:07 +08:00
Files
Mergely/test/main.js
2012-11-15 19:26:33 +00:00

26 lines
419 B
JavaScript
Executable File

require.config({
paths: {
'codemirror': '../lib/codemirror',
'mergely': '../lib/mergely',
'jsunit': 'lib/jsunit/jsunit'
}
});
var OPTIONS = {debug:false};
require([
'codemirror',
'mergely',
'jsunit',
//test modules
'tests',
], function(
mergely,
codemirror,
JsUnit,
tests
){
tests();
JsUnit.start();
});