Skip integration tests that use flutter-tester on Windows (#19773)

* Skip integration tests that use flutter-tester on Windows

This is known to be broken. I will un-skip all of these once a fix for flutter-tester lands on Windows.

* Save with added import!
This commit is contained in:
Danny Tuppeny 2018-07-25 18:31:50 +01:00 committed by GitHub
parent b3c319e4f1
commit 93dd3f193c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,7 @@ import 'dart:async';
import 'package:file/file.dart';
import 'package:flutter_tools/src/base/file_system.dart';
import 'package:flutter_tools/src/base/platform.dart';
import 'package:test/test.dart';
import 'test_data/basic_project.dart';
@ -43,5 +44,6 @@ void main() {
await new Future<void>.delayed(requiredLifespan);
expect(_flutter.hasExited, equals(false));
});
}, timeout: const Timeout.factor(3));
// Skip on Windows due to https://github.com/flutter/flutter/issues/17833
}, timeout: const Timeout.factor(3), skip: platform.isWindows);
}