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

Side by Side Diff: test/runner/browser/expanded_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_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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698