| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 @TestOn("vm") | 5 @TestOn("vm") |
| 6 | 6 |
| 7 import 'package:scheduled_test/descriptor.dart' as d; | 7 import 'package:scheduled_test/descriptor.dart' as d; |
| 8 import 'package:scheduled_test/scheduled_stream.dart'; | 8 import 'package:scheduled_test/scheduled_stream.dart'; |
| 9 import 'package:scheduled_test/scheduled_test.dart'; | 9 import 'package:scheduled_test/scheduled_test.dart'; |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 "-r", "expanded", | 28 "-r", "expanded", |
| 29 "-p", "content-shell", | 29 "-p", "content-shell", |
| 30 "-p", "vm", | 30 "-p", "vm", |
| 31 "-j", "1", | 31 "-j", "1", |
| 32 "test.dart" | 32 "test.dart" |
| 33 ]); | 33 ]); |
| 34 | 34 |
| 35 test.stdout.fork().expect(consumeThrough(contains("[VM]"))); | 35 test.stdout.fork().expect(consumeThrough(contains("[VM]"))); |
| 36 test.stdout.expect(consumeThrough(contains("[Dartium Content Shell]"))); | 36 test.stdout.expect(consumeThrough(contains("[Dartium Content Shell]"))); |
| 37 test.shouldExit(0); | 37 test.shouldExit(0); |
| 38 }); | 38 }, tags: ['content-shell']); |
| 39 } | 39 } |
| OLD | NEW |