There was an error while loading. Please reload this page.
1 parent 746a4dc commit ba98412Copy full SHA for ba98412
pkgs/test/test/runner/test_chain_test.dart
@@ -6,8 +6,8 @@
6
7
import 'dart:convert';
8
9
-import 'package:test_descriptor/test_descriptor.dart' as d;
10
import 'package:test/test.dart';
+import 'package:test_descriptor/test_descriptor.dart' as d;
11
12
import '../io.dart';
13
@@ -70,12 +70,12 @@ void main() {
70
'dart_test.yaml',
71
jsonEncode({
72
'fold_stack_frames': {
73
- 'only': ['test']
+ 'only': ['test_api']
74
}
75
}))
76
.create();
77
var test = await runTest(['test.dart']);
78
- expect(test.stdoutStream(), emitsThrough(contains('package:test')));
+ expect(test.stdoutStream(), emitsThrough(contains('package:test_api')));
79
await test.shouldExit(1);
80
- }, skip: 'https://github.com/dart-lang/test/issues/1120');
+ });
81
0 commit comments