OLD | NEW |
1 dart_library.library('unittest', null, /* Imports */[ | 1 dart_library.library('unittest', null, /* Imports */[ |
2 'dart/_runtime', | 2 'dart/_runtime', |
3 'matcher/matcher', | 3 'matcher/matcher', |
4 'dom/dom', | 4 'dom/dom', |
5 'dart/core', | 5 'dart/core', |
6 'dart/async', | 6 'dart/async', |
7 'matcher/src/interfaces', | 7 'matcher/src/interfaces', |
8 'matcher/src/util', | 8 'matcher/src/util', |
9 'matcher/src/description' | 9 'matcher/src/description' |
10 ], /* Lazy imports */[ | 10 ], /* Lazy imports */[ |
11 ], function(exports, dart, matcher, dom, core, async, interfaces, util, descript
ion$) { | 11 ], function(exports, dart, matcher, dom, core, $async, interfaces, util, descrip
tion$) { |
12 'use strict'; | 12 'use strict'; |
13 let dartx = dart.dartx; | 13 let dartx = dart.dartx; |
14 dart.export(exports, matcher); | 14 dart.export_(exports, matcher); |
15 function group(name, body) { | 15 function group(name, body) { |
16 return dart.dsend(dom.window, 'suite', name, body); | 16 return dart.dsend(dom.window, 'suite', name, body); |
17 } | 17 } |
18 dart.fn(group, dart.void, [core.String, dart.functionType(dart.void, [])]); | 18 dart.fn(group, dart.void, [core.String, dart.functionType(dart.void, [])]); |
19 function test(name, body, opts) { | 19 function test(name, body, opts) { |
20 let skip = opts && 'skip' in opts ? opts.skip : null; | 20 let skip = opts && 'skip' in opts ? opts.skip : null; |
21 if (skip != null) { | 21 if (skip != null) { |
22 core.print(`SKIP ${name}: ${skip}`); | 22 core.print(`SKIP ${name}: ${skip}`); |
23 return; | 23 return; |
24 } | 24 } |
25 dart.dsend(dom.window, 'test', name, dart.fn(done => { | 25 dart.dsend(dom.window, 'test', name, dart.fn(done => { |
26 function _finishTest(f) { | 26 function _finishTest(f) { |
27 if (dart.is(f, async.Future)) { | 27 if (dart.is(f, $async.Future)) { |
28 dart.dsend(f, 'then', _finishTest); | 28 dart.dsend(f, 'then', _finishTest); |
29 } else { | 29 } else { |
30 dart.dcall(done); | 30 dart.dcall(done); |
31 } | 31 } |
32 } | 32 } |
33 dart.fn(_finishTest); | 33 dart.fn(_finishTest); |
34 _finishTest(body()); | 34 _finishTest(body()); |
35 })); | 35 })); |
36 } | 36 } |
37 dart.fn(test, dart.void, [core.String, dart.functionType(dart.dynamic, [])], {
skip: core.String}); | 37 dart.fn(test, dart.void, [core.String, dart.functionType(dart.dynamic, [])], {
skip: core.String}); |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 } | 84 } |
85 dart.fn(_defaultFailFormatter, core.String, [dart.dynamic, interfaces.Matcher,
core.String, core.Map, core.bool]); | 85 dart.fn(_defaultFailFormatter, core.String, [dart.dynamic, interfaces.Matcher,
core.String, core.Map, core.bool]); |
86 // Exports: | 86 // Exports: |
87 exports.group = group; | 87 exports.group = group; |
88 exports.test = test; | 88 exports.test = test; |
89 exports.TestFailure = TestFailure; | 89 exports.TestFailure = TestFailure; |
90 exports.ErrorFormatter = ErrorFormatter; | 90 exports.ErrorFormatter = ErrorFormatter; |
91 exports.expect = expect; | 91 exports.expect = expect; |
92 exports.fail = fail; | 92 exports.fail = fail; |
93 }); | 93 }); |
OLD | NEW |