mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
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:
parent
b3c319e4f1
commit
93dd3f193c
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user