Commit 4c99319f authored by Devon Carew's avatar Devon Carew

Merge pull request #156 from devoncarew/skip_test_windows

skip a test on windows
parents 49209036 39cf5218
...@@ -24,6 +24,9 @@ defineTests() { ...@@ -24,6 +24,9 @@ defineTests() {
temp.deleteSync(recursive: true); temp.deleteSync(recursive: true);
}); });
// This test consistently times out on our windows bot. The code is already
// covered on the linux one.
if (!Platform.isWindows) {
// Verify that we create a project that is well-formed. // Verify that we create a project that is well-formed.
test('init flutter-simple', () async { test('init flutter-simple', () async {
InitCommand command = new InitCommand(); InitCommand command = new InitCommand();
...@@ -44,6 +47,7 @@ defineTests() { ...@@ -44,6 +47,7 @@ defineTests() {
expect(exec.exitCode, 0); expect(exec.exitCode, 0);
}, },
// This test can take a while due to network requests. // This test can take a while due to network requests.
timeout: new Timeout(new Duration(minutes: 3))); timeout: new Timeout(new Duration(minutes: 2)));
}
}); });
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment