File tree Expand file tree Collapse file tree 7 files changed +21
-12
lines changed Expand file tree Collapse file tree 7 files changed +21
-12
lines changed Original file line number Diff line number Diff line change 1+ ## 1.11.1
2+
3+ * Allow ` test_api ` ` 0.2.13 ` to work around a bug in the SDK version ` 2.3.0 ` .
4+
15## 1.11.0
26
37* Add ` file_reporters ` configuration option and ` --file-reporter ` CLI option to
Original file line number Diff line number Diff line change 11name : test
2- version : 1.11.1-dev
2+ version : 1.11.1
33description : A full featured library for writing and running Dart tests.
44homepage : https://github.com/dart-lang/test/blob/master/pkgs/test
55
@@ -30,8 +30,8 @@ dependencies:
3030 web_socket_channel : ^1.0.0
3131 yaml : ^2.0.0
3232 # Use an exact version until the test_api and test_core package are stable.
33- test_api : 0.2.12
34- test_core : 0.2.17
33+ test_api : 0.2.13
34+ test_core : 0.2.18
3535
3636dev_dependencies :
3737 fake_async : ^1.0.0
Original file line number Diff line number Diff line change 1- ## 0.2.13-dev
1+ ## 0.2.13
22
3- * Internal cleanup.
3+ * Work around a bug in the ` 2.3.0 ` SDK by avoiding for-loop elements at the top
4+ level.
45
56## 0.2.12
67
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ final _universalValidVariables = {
1616 'browser' ,
1717 'js' ,
1818 'blink' ,
19- 'google' ,
20- for ( var runtime in Runtime .builtIn) runtime.identifier,
21- for ( var os in OperatingSystem .all) os .identifier,
22- } ;
19+ 'google'
20+ }
21+ .. addAll ( Runtime .builtIn. map ((r) => r .identifier))
22+ .. addAll ( OperatingSystem .all. map ((os) => os.identifier)) ;
2323
2424/// An expression for selecting certain platforms, including operating systems
2525/// and browsers.
Original file line number Diff line number Diff line change 11name : test_api
2- version : 0.2.13-dev
2+ version : 0.2.13
33description : A library for writing Dart tests.
44homepage : https://github.com/dart-lang/test/blob/master/pkgs/test_api
55
Original file line number Diff line number Diff line change 1+ ## 0.2.18
2+
3+ * Allow ` test_api ` ` 0.2.13 ` to work around a bug in the SDK version ` 2.3.0 ` .
4+
15## 0.2.17
26
37* Add ` file_reporters ` configuration option and ` --file-reporter ` CLI option to
Original file line number Diff line number Diff line change 11name : test_core
2- version : 0.2.18-dev
2+ version : 0.2.18
33description : A basic library for writing tests and running them on the VM.
44homepage : https://github.com/dart-lang/test/blob/master/pkgs/test_core
55
@@ -31,7 +31,7 @@ dependencies:
3131 # properly constrains all features it provides.
3232 matcher : " >=0.12.6 <0.12.7"
3333 # Use an exact version until the test_api package is stable.
34- test_api : 0.2.12
34+ test_api : 0.2.13
3535
3636dependency_overrides :
3737 test_api :
You can’t perform that action at this time.
0 commit comments