File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 0.12.24+6
2+
3+ * Small refactoring to make the package compatible with strong-mode compliant Zone API.
4+ No user-visible change.
5+
16## 0.12.24+5
27
38* Expose a way for tests to forward a ` loadException ` to the server.
Original file line number Diff line number Diff line change @@ -159,7 +159,10 @@ class LoadSuite extends Suite implements RunnerSuite {
159159 if (pair == null ) return null ;
160160
161161 var zone = pair.last;
162- var newSuite = zone.runUnaryGuarded (change, pair.first);
162+ var newSuite;
163+ zone.runGuarded (() {
164+ newSuite = change (pair.first);
165+ });
163166 return newSuite == null ? null : new Pair (newSuite, zone);
164167 }));
165168 }
Original file line number Diff line number Diff line change 11name : test
2- version : 0.12.24+5
2+ version : 0.12.24+6
33author :
Dart Team <[email protected] > 44description : A library for writing dart unit tests.
55homepage : https://github.com/dart-lang/test
You can’t perform that action at this time.
0 commit comments