Unverified Commit bdf0dd46 authored by Danny Tuppeny's avatar Danny Tuppeny Committed by GitHub

Skip attach test on Windows due to #17833 (#19763)

parent d71d1009
......@@ -4,6 +4,7 @@
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 '../src/context.dart';
......@@ -39,5 +40,6 @@ void main() {
await _flutterAttach.hotReload();
});
}, 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