@@ -98,10 +98,10 @@ void runCommonTests(
98
98
void group (String description, void body ()) =>
99
99
skipIfNecessary (description, () => testpkg.group (description, body));
100
100
101
- void test (String description, FutureOr <void > body ()) =>
101
+ void test (String description, FutureOr <void > body (), { dynamic skip} ) =>
102
102
skipIfNecessary (description, () {
103
103
if (replay == null ) {
104
- testpkg.test (description, body);
104
+ testpkg.test (description, body, skip : skip );
105
105
} else {
106
106
group ('rerun' , () {
107
107
testpkg.setUp (() async {
@@ -114,7 +114,7 @@ void runCommonTests(
114
114
await Future .forEach (setUps, (SetUpTearDown setUp) => setUp ());
115
115
});
116
116
117
- testpkg.test (description, body);
117
+ testpkg.test (description, body, skip : skip );
118
118
119
119
testpkg.tearDown (() async {
120
120
for (SetUpTearDown tearDown in tearDowns) {
@@ -179,7 +179,7 @@ void runCommonTests(
179
179
test ('considersBothSlashesEquivalent' , () {
180
180
fs.directory (r'foo\bar_dir' ).createSync (recursive: true );
181
181
expect (fs.directory (r'foo/bar_dir' ), exists);
182
- });
182
+ }, skip : "Fails due to https://github.com/google/file.dart/issues/112" );
183
183
});
184
184
185
185
group ('file' , () {
@@ -210,7 +210,7 @@ void runCommonTests(
210
210
test ('considersBothSlashesEquivalent' , () {
211
211
fs.file (r'foo\bar_file' ).createSync (recursive: true );
212
212
expect (fs.file (r'foo/bar_file' ), exists);
213
- });
213
+ }, skip : "Fails due to https://github.com/google/file.dart/issues/112" );
214
214
});
215
215
216
216
group ('link' , () {
0 commit comments