Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: test/runner/browser/compact_reporter_test.dart

Issue 1707173002: Add browser tags to all of our tests. (Closed) Base URL: git@github.com:dart-lang/test@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698