-
Notifications
You must be signed in to change notification settings - Fork 600
/
Copy pathunit.js
61 lines (49 loc) · 1.36 KB
/
unit.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
49
50
51
52
53
54
55
56
57
58
59
60
61
require([
"qunit",
// util
"./unit/util/object/invert",
"./unit/util/regexp/escape",
"./unit/util/regexp/not-s-and-z",
"./unit/util/regexp/not-s",
// core
"./unit/core",
"./unit/core/locale",
// currency
"./unit/currency/name-properties",
"./unit/currency/symbol-properties",
"./unit/currency/name-format",
// date
"./unit/date/expand-pattern/augment-format",
"./unit/date/expand-pattern/compare-formats",
"./unit/date/expand-pattern/get-best-match-pattern",
"./unit/date/expand-pattern",
"./unit/date/timezone-hour-format",
"./unit/date/format-properties",
"./unit/date/parse-properties",
"./unit/date/tokenizer-properties",
"./unit/date/format",
"./unit/date/tokenizer",
"./unit/date/parse",
// number
"./unit/number/pattern-properties",
"./unit/number/format/integer-fraction-digits",
"./unit/number/format/significant-digits",
"./unit/number/format/grouping-separator",
"./unit/number/format-properties",
"./unit/number/format",
"./unit/number/parse-properties",
"./unit/number/parse",
// relative time
"./unit/relative-time/properties",
"./unit/relative-time/format",
/* unit */
"./unit/unit/get",
"./unit/unit/format"
], function() {
QUnit.start();
}, function( error ) {
QUnit.test( "requirejs load failure", function( assert ) {
assert.ok( false, "requirejs failed to load: " + QUnit.dump.parse( error ) );
});
QUnit.start();
});