File tree Expand file tree Collapse file tree 5 files changed +24
-18
lines changed Expand file tree Collapse file tree 5 files changed +24
-18
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.26.2
2
+
3
+ * Graduate native assets from experiment to preview.
4
+
1
5
## 1.26.1
2
6
3
7
* Set a debug name for test isolates.
Original file line number Diff line number Diff line change 1
1
name : test
2
- version : 1.26.1
2
+ version : 1.26.2
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
@@ -37,7 +37,7 @@ dependencies:
37
37
38
38
# Use an exact version until the test_api and test_core package are stable.
39
39
test_api : 0.7.6
40
- test_core : 0.6.10
40
+ test_core : 0.6.11
41
41
42
42
typed_data : ^1.3.0
43
43
web_socket_channel : ' >=2.0.0 <4.0.0'
@@ -51,4 +51,4 @@ dev_dependencies:
51
51
test_process : ^2.0.0
52
52
53
53
topics :
54
- - testing
54
+ - testing
Original file line number Diff line number Diff line change
1
+ ## 0.6.11
2
+
3
+ * Graduate native assets from experiment to preview.
4
+
1
5
## 0.6.10
2
6
3
7
* Set a debug name for test isolates.
Original file line number Diff line number Diff line change @@ -154,19 +154,17 @@ class _TestCompilerForLanguageVersion {
154
154
// If we have native assets for the host os in JIT mode, they are either
155
155
// in the `.dart_tool/` in the root package or in the pub workspace.
156
156
Uri ? nativeAssetsYaml;
157
- if (enabledExperiments.contains ('native-assets' )) {
158
- final nativeAssetsYamlRootPackage =
159
- Directory .current.uri.resolve ('.dart_tool/native_assets.yaml' );
160
- final nativeAssetsYamlWorkspace =
161
- packageConfigUriAwaited.resolve ('native_assets.yaml' );
162
- for (final potentialNativeAssetsUri in [
163
- nativeAssetsYamlRootPackage,
164
- nativeAssetsYamlWorkspace
165
- ]) {
166
- if (await File .fromUri (potentialNativeAssetsUri).exists ()) {
167
- nativeAssetsYaml = potentialNativeAssetsUri;
168
- break ;
169
- }
157
+ final nativeAssetsYamlRootPackage =
158
+ Directory .current.uri.resolve ('.dart_tool/native_assets.yaml' );
159
+ final nativeAssetsYamlWorkspace =
160
+ packageConfigUriAwaited.resolve ('native_assets.yaml' );
161
+ for (final potentialNativeAssetsUri in [
162
+ nativeAssetsYamlRootPackage,
163
+ nativeAssetsYamlWorkspace
164
+ ]) {
165
+ if (await File .fromUri (potentialNativeAssetsUri).exists ()) {
166
+ nativeAssetsYaml = potentialNativeAssetsUri;
167
+ break ;
170
168
}
171
169
}
172
170
Original file line number Diff line number Diff line change 1
1
name : test_core
2
- version : 0.6.10
2
+ version : 0.6.11
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
issue_tracker : https://github.com/dart-lang/test/issues?q=is%3Aissue+is%3Aopen+label%3Apackage%3Atest
@@ -29,7 +29,7 @@ dependencies:
29
29
stream_channel : ^2.1.0
30
30
# Use an exact version until the test_api package is stable.
31
31
test_api : 0.7.6
32
- vm_service : " >=6.0.0 <16.0.0"
32
+ vm_service : ' >=6.0.0 <16.0.0'
33
33
yaml : ^3.0.0
34
34
35
35
dev_dependencies :
You can’t perform that action at this time.
0 commit comments