File tree Expand file tree Collapse file tree 15 files changed +136
-132
lines changed Expand file tree Collapse file tree 15 files changed +136
-132
lines changed Original file line number Diff line number Diff line change 1
1
name : regression_tests
2
2
publish_to : none
3
3
environment :
4
- sdk : ^3.5.0-311.0.dev
4
+ sdk : ^3.5.0
5
5
resolution : workspace
6
6
dependencies :
7
7
test : any
Original file line number Diff line number Diff line change 1
1
name : spawn_hybrid
2
2
publish_to : none
3
3
environment :
4
- sdk : ^3.5.0-311.0.dev
4
+ sdk : ^3.5.0
5
5
resolution : workspace
6
6
dependencies :
7
7
async : ^2.9.0
Original file line number Diff line number Diff line change 1
1
name : wasm_tests
2
2
publish_to : none
3
3
environment :
4
- sdk : ^3.5.0-311.0.dev
4
+ sdk : ^3.5.0
5
5
resolution : workspace
6
6
dev_dependencies :
7
7
test : any
Original file line number Diff line number Diff line change 8
8
- Add ` containsMatchingInOrder ` and ` containsEqualInOrder ` to replace the
9
9
combined functionality in ` containsInOrder ` .
10
10
- Replace ` pairwiseComparesTo ` with ` pairwiseMatches ` .
11
+ - Increase SDK constraint to ^3.5.0.
11
12
12
13
## 0.3.0
13
14
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ repository: https://github.com/dart-lang/test/tree/master/pkgs/checks
7
7
resolution : workspace
8
8
9
9
environment :
10
- sdk : ^3.5.0-311.0.dev
10
+ sdk : ^3.5.0
11
11
12
12
dependencies :
13
13
async : ^2.8.0
Original file line number Diff line number Diff line change 3
3
// BSD-style license that can be found in the LICENSE file.
4
4
5
5
@Deprecated ('Check properties on known types' )
6
- library mirror_matchers ;
6
+ library ;
7
7
8
8
/// The mirror matchers library provides some additional matchers that
9
9
/// make use of `dart:mirrors` .
Original file line number Diff line number Diff line change @@ -106,8 +106,8 @@ class TypeMatcher<T> extends Matcher {
106
106
final _dart2DynamicArgs = RegExp ('<dynamic(, dynamic)*>' );
107
107
108
108
/// With this expression `{}.runtimeType.toString` ,
109
- /// Dart 1: "<Instance of Map>
110
- /// Dart 2: "<Instance of Map<dynamic, dynamic>>"
109
+ /// Dart 1: "` <Instance of Map>` "
110
+ /// Dart 2: "` <Instance of Map<dynamic, dynamic>>` "
111
111
///
112
112
/// This functions returns the Dart 1 output, when Dart 2 runtime semantics
113
113
/// are enabled.
Original file line number Diff line number Diff line change 1
- ## 1.25.9-wip
1
+ ## 1.25.9
2
2
3
+ * Allow ` analyzer: '>=6.0.0 <8.0.0' `
3
4
* Fix dart2wasm tests on windows.
4
- * Increase SDK constraint to ^3.5.0-311.0.dev .
5
+ * Increase SDK constraint to ^3.5.0.
5
6
* Support running Node.js tests compiled with dart2wasm.
6
7
* Allow ` firefox ` or ` firefox-bin ` executable name on macOS.
7
8
Original file line number Diff line number Diff line change 1
1
name : test
2
- version : 1.25.9-wip
2
+ version : 1.25.9
3
3
description : >-
4
4
A full featured library for writing and running Dart tests across platforms.
5
5
repository : https://github.com/dart-lang/test/tree/master/pkgs/test
6
6
resolution : workspace
7
7
8
8
environment :
9
- sdk : ^3.5.0-311.0.dev
9
+ sdk : ^3.5.0
10
10
11
11
dependencies :
12
- analyzer : ' >=5.12 .0 <7 .0.0'
12
+ analyzer : ' >=6.0 .0 <8 .0.0'
13
13
async : ^2.5.0
14
14
boolean_selector : ^2.1.0
15
15
collection : ^1.15.0
@@ -35,8 +35,8 @@ dependencies:
35
35
stream_channel : ^2.1.0
36
36
37
37
# Use an exact version until the test_api and test_core package are stable.
38
- test_api : 0.7.4-wip
39
- test_core : 0.6.6-wip
38
+ test_api : 0.7.4
39
+ test_core : 0.6.6
40
40
41
41
typed_data : ^1.3.0
42
42
web_socket_channel : ' >=2.0.0 <4.0.0'
Original file line number Diff line number Diff line change 1
- ## 0.7.4-wip
1
+ ## 0.7.4
2
2
3
- * Increase SDK constraint to ^3.5.0-311.0.dev.
3
+ * Allow ` analyzer: '>=6.0.0 <8.0.0' `
4
+ * Increase SDK constraint to ^3.5.0.
4
5
* Support running Node.js tests compiled with dart2wasm.
5
6
6
7
## 0.7.3
Original file line number Diff line number Diff line change 1
1
name : test_api
2
- version : 0.7.4-wip
2
+ version : 0.7.4
3
3
description : >-
4
4
The user facing API for structuring Dart tests and checking expectations.
5
5
repository : https://github.com/dart-lang/test/tree/master/pkgs/test_api
6
6
resolution : workspace
7
7
8
8
environment :
9
- sdk : ^3.5.0-311.0.dev
9
+ sdk : ^3.5.0
10
10
11
11
dependencies :
12
12
async : ^2.5.0
@@ -20,7 +20,7 @@ dependencies:
20
20
term_glyph : ^1.2.0
21
21
22
22
dev_dependencies :
23
- analyzer : ' >=2.1 .0 <7 .0.0'
23
+ analyzer : ' >=6.0 .0 <8 .0.0'
24
24
fake_async : ^1.2.0
25
25
glob : ^2.0.0
26
26
graphs : ^2.0.0
Original file line number Diff line number Diff line change 1
- ## 0.6.6-wip
1
+ ## 0.6.6
2
2
3
+ * Allow ` analyzer: '>=6.0.0 <8.0.0' `
3
4
* Fix dart2wasm tests on windows.
4
- * Increase SDK constraint to ^3.5.0-311.0.dev .
5
+ * Increase SDK constraint to ^3.5.0.
5
6
* Allow passing additional arguments to ` dart compile wasm ` .
6
7
7
8
## 0.6.5
Original file line number Diff line number Diff line change 1
1
name : test_core
2
- version : 0.6.6-wip
2
+ version : 0.6.6
3
3
description : A basic library for writing tests and running them on the VM.
4
4
repository : https://github.com/dart-lang/test/tree/master/pkgs/test_core
5
5
resolution : workspace
6
6
7
7
environment :
8
- sdk : ^3.5.0-311.0.dev
8
+ sdk : ^3.5.0
9
9
10
10
dependencies :
11
- analyzer : ' >=3.3 .0 <7 .0.0'
11
+ analyzer : ' >=6.0 .0 <8 .0.0'
12
12
args : ^2.0.0
13
13
async : ^2.5.0
14
14
boolean_selector : ^2.1.0
@@ -27,7 +27,7 @@ dependencies:
27
27
stack_trace : ^1.10.0
28
28
stream_channel : ^2.1.0
29
29
# Use an exact version until the test_api package is stable.
30
- test_api : 0.7.4-wip
30
+ test_api : 0.7.4
31
31
vm_service : " >=6.0.0 <15.0.0"
32
32
yaml : ^3.0.0
33
33
Original file line number Diff line number Diff line change 1
1
name : test_workspace
2
2
publish_to : none
3
3
environment :
4
- sdk : ^3.5.0-311.0.dev # Must be ^3.5.0 or later for workspace to be allowed
4
+ sdk : ^3.5.0
5
5
workspace :
6
6
- integration_tests/regression
7
7
- integration_tests/spawn_hybrid
You can’t perform that action at this time.
0 commit comments