forked from seajs/seajs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
48 lines (39 loc) · 916 Bytes
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
if (typeof define !== 'function') {
this.define = function(fn) {
fn(null, this);
}
}
define(function(require, exports) {
exports.testCases = [
'modules/math'
,'modules/cyclic'
,'modules/relative'
,'modules/determinism'
,'modules/exactExports'
,'modules/hasOwnProperty'
,'modules/method'
,'modules/missing'
,'modules/monkeys'
,'modules/nested'
,'modules/transitive'
,'modules/alias'
,'modules/version'
,'modules/load'
,'modules/metadata'
,'modules/exports'
,'modules/checkPotentialErrors'
,'modules/extend'
,'packages/math'
,'unit/util-helper'
,'issues/config-base'
,'issues/ie-cache'
,'issues/load-css'
,'issues/local-files'
,'issues/no-conflict'
,'issues/remove-comments'
,'issues/multi-use'
,'issues/jsonp'
,'bootstrap/index'
];
//exports.testCases = ['modules/cyclic'];
});