Disable color filter sepia test for Impeller. (#143861)

This test is still unstable with the debug banner disabled. the Icon in the FAB appears to be shifting.
This commit is contained in:
Jonah Williams
2024-02-21 13:06:19 -08:00
committed by GitHub
parent 9ed5496c01
commit d699bcb44c

View File

@@ -12,6 +12,8 @@ import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter_test/flutter_test.dart';
import '../impeller_test_helpers.dart';
void main() {
testWidgets('Color filter - red', (WidgetTester tester) async {
await tester.pumpWidget(
@@ -64,7 +66,7 @@ void main() {
find.byType(ColorFiltered),
matchesGoldenFile('color_filter_sepia.png'),
);
});
}, skip: impellerEnabled); // https://github.com/flutter/flutter/issues/143616
testWidgets('Color filter - reuses its layer', (WidgetTester tester) async {
Future<void> pumpWithColor(Color color) async {