Unverified Commit 93dd3f19 authored by Danny Tuppeny's avatar Danny Tuppeny Committed by GitHub

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!
parent b3c319e4
......@@ -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);
}
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