| 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_test.dart'; | 8 import 'package:scheduled_test/scheduled_test.dart'; |
| 9 | 9 |
| 10 import '../../io.dart'; | 10 import '../../io.dart'; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 var test = runTest([ | 27 var test = runTest([ |
| 28 "-p", "content-shell", | 28 "-p", "content-shell", |
| 29 "-p", "vm", | 29 "-p", "vm", |
| 30 "-j", "1", | 30 "-j", "1", |
| 31 "test.dart" | 31 "test.dart" |
| 32 ], reporter: "compact"); | 32 ], reporter: "compact"); |
| 33 | 33 |
| 34 test.stdout.expect(containsInOrder(["[VM]", "[Dartium Content Shell]"])); | 34 test.stdout.expect(containsInOrder(["[VM]", "[Dartium Content Shell]"])); |
| 35 | 35 |
| 36 test.shouldExit(0); | 36 test.shouldExit(0); |
| 37 }); | 37 }, tags: 'content-shell'); |
| 38 } | 38 } |
| OLD | NEW |