Skip to content

Commit be04a28

Browse files
committed
fix tests
1 parent caaf246 commit be04a28

File tree

1 file changed

+0
-29
lines changed

1 file changed

+0
-29
lines changed

test/flutter_gen_test.dart

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -152,34 +152,5 @@ void main() {
152152
isNotEmpty,
153153
);
154154
});
155-
156-
test('Assets with No lists on pubspec.yaml', () async {
157-
await FlutterGenerator(File('test_resources/pubspec_assets_no_list.yaml'))
158-
.build();
159-
expect(
160-
File('test_resources/lib/gen/assets.gen.dart').existsSync(),
161-
isFalse,
162-
);
163-
});
164-
165-
test('Wrong fonts settings on pubspec.yaml', () async {
166-
await FlutterGenerator(
167-
File('test_resources/pubspec_fonts_no_family.yaml'))
168-
.build();
169-
expect(
170-
File('test_resources/lib/gen/fonts.gen.dart').existsSync(),
171-
isFalse,
172-
);
173-
});
174-
175-
test('Wrong colors settings on pubspec.yaml', () async {
176-
await FlutterGenerator(
177-
File('test_resources/pubspec_colors_no_inputs.yaml'))
178-
.build();
179-
expect(
180-
File('test_resources/lib/gen/colors.gen.dart').existsSync(),
181-
isFalse,
182-
);
183-
});
184155
});
185156
}

0 commit comments

Comments
 (0)