diff --git a/test/runner/browser/runner_test.dart b/test/runner/browser/runner_test.dart index 17d84d904ab984406f21b95165e84b757a9238fd..2846bff53a144dc6f34abcbe136416b402961426 100644 --- a/test/runner/browser/runner_test.dart +++ b/test/runner/browser/runner_test.dart @@ -415,7 +415,7 @@ void main() { }); test("the compiler uses colors if the test runner uses colors", () async { - await d.file("test.dart", "String main() => 12;\n").create(); + await d.file("test.dart", "{").create(); var test = await runTest(["--color", "-p", "chrome", "test.dart"]); expect(test.stdout, emitsThrough(contains('\u001b[35m'))); @@ -450,7 +450,7 @@ void main() { containsInOrder( [" main.<fn>", "package:test", "dart:async/zone.dart"])); await test.shouldExit(1); - }, tags: 'chrome'); + }, tags: 'chrome', skip: 'Broken by sdk#32633'); test("doesn't dartify stack traces for JS-compiled tests with --js-trace", () async { diff --git a/test/runner/node/runner_test.dart b/test/runner/node/runner_test.dart index 09c80d9feb5b7a20cec48bf09c0d5bd2f153913e..f120510fe48794cd374607e10a5558a9283cfb08 100644 --- a/test/runner/node/runner_test.dart +++ b/test/runner/node/runner_test.dart @@ -202,7 +202,7 @@ void main() { containsInOrder( [" main.<fn>", "package:test", "dart:async/zone.dart"])); await test.shouldExit(1); - }); + }, skip: 'Broken by sdk#32633'); test("doesn't dartify stack traces for JS-compiled tests with --js-trace", () async { diff --git a/test/runner/pub_serve_test.dart b/test/runner/pub_serve_test.dart index e4f818fea997e962af4049dcd16eefd977e868e9..8e6be0c9d2063bb811808cf2f63ac7674c338612 100644 --- a/test/runner/pub_serve_test.dart +++ b/test/runner/pub_serve_test.dart @@ -295,7 +295,7 @@ void main() { await test.shouldExit(1); pub.kill(); }, tags: 'node'); - }); + }, skip: 'Broken by sdk#32633'); group("doesn't dartify stack traces for JS-compiled tests with --js-trace", () {