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

Unified Diff: test/runner/pause_after_load_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 side-by-side diff with in-line comments
Download patch
Index: test/runner/pause_after_load_test.dart
diff --git a/test/runner/pause_after_load_test.dart b/test/runner/pause_after_load_test.dart
index 91969ba4b6c86717407ef9ce05bb0f14b39613d7..8c701e316e76b702864d5006aa1608d3ed1639a0 100644
--- a/test/runner/pause_after_load_test.dart
+++ b/test/runner/pause_after_load_test.dart
@@ -86,7 +86,7 @@ void main() {
test.writeLine('');
test.stdout.expect(consumeThrough(contains("+2: All tests passed!")));
test.shouldExit(0);
- });
+ }, tags: 'dartium');
test("pauses the test runner for each platform until the user presses enter",
() {
@@ -148,7 +148,7 @@ void main() {
test.writeLine('');
test.stdout.expect(consumeThrough(contains("+2: All tests passed!")));
test.shouldExit(0);
- });
+ }, tags: ['dartium', 'chrome']);
test("prints a warning and doesn't pause for unsupported platforms", () {
d.file("test.dart", """
@@ -212,7 +212,7 @@ void main() {
"+2: All tests passed!"
]));
test.shouldExit(0);
- });
+ }, tags: 'dartium');
test("stops immediately if killed while paused", () {
d.file("test.dart", """
@@ -237,7 +237,7 @@ void main() {
test.signal(ProcessSignal.SIGTERM);
test.shouldExit();
test.stderr.expect(isDone);
- }, testOn: "!windows");
+ }, tags: 'dartium', testOn: "!windows");
test("disables timeouts", () {
d.file("test.dart", """
@@ -280,7 +280,7 @@ void main() {
test.writeLine('');
test.stdout.expect(consumeThrough(contains("+1: All tests passed!")));
test.shouldExit(0);
- });
+ }, tags: 'dartium');
// Regression test for #304.
test("supports test name patterns", () {
@@ -322,5 +322,5 @@ void main() {
test.writeLine('');
test.stdout.expect(consumeThrough(contains("+1: All tests passed!")));
test.shouldExit(0);
- });
+ }, tags: 'dartium');
}

Powered by Google App Engine
This is Rietveld 408576698