Index: test/run/resource_test.dart |
diff --git a/test/run/resource_test.dart b/test/run/resource_test.dart |
index 9ea7dca899159ad18576c8ebd17260c67a1ef709..08a4b133631603240e42554185b19261aa48b2f7 100644 |
--- a/test/run/resource_test.dart |
+++ b/test/run/resource_test.dart |
@@ -54,7 +54,8 @@ main() async { |
pub.stdout.expect("hello!"); |
pub.shouldExit(0); |
- }); |
+ }, |
+ skip: "Issue https://github.com/dart-lang/pub/issues/1446"); |
nweiz
2016/09/27 22:15:04
For future reference: If you want to skip all the
|
integration("the spawned application can load a dependency's resource", () { |
d.dir("foo", [ |
@@ -90,7 +91,8 @@ main() async { |
pub.stdout.expect("hello!"); |
pub.shouldExit(0); |
- }); |
+ }, |
+ skip: "Issue https://github.com/dart-lang/pub/issues/1446"); |
integration('the spawned application can load a transformed resource', () { |
serveBarback(); |
@@ -129,7 +131,8 @@ main() async { |
pub.stdout.expect("hello!"); |
pub.shouldExit(0); |
- }); |
+ }, |
+ skip: "Issue https://github.com/dart-lang/pub/issues/1446"); |
integration('a snapshotted application can load a resource', () { |
servePackages((builder) { |
@@ -167,5 +170,6 @@ main() async { |
pub.stdout.expect("hello!"); |
pub.shouldExit(0); |
- }); |
+ }, |
+ skip: "Issue https://github.com/dart-lang/pub/issues/1446"); |
} |