Unverified Commit 530824f4 authored by Todd Volkert's avatar Todd Volkert Committed by GitHub

Skip flaky test on Windows (#34464)

https://github.com/flutter/flutter/issues/34446
parent c1a2e44c
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'dart:convert'; import 'dart:convert';
import 'dart:io' as io;
import 'package:file/file.dart'; import 'package:file/file.dart';
import 'package:file/memory.dart'; import 'package:file/memory.dart';
...@@ -138,7 +139,7 @@ name: example'''); ...@@ -138,7 +139,7 @@ name: example''');
expect(bundle.entries.length, 4); expect(bundle.entries.length, 4);
}, overrides: <Type, Generator>{ }, overrides: <Type, Generator>{
FileSystem: () => testFileSystem, FileSystem: () => testFileSystem,
}); }, skip: io.Platform.isWindows /* https://github.com/flutter/flutter/issues/34446 */);
}); });
} }
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