Unverified Commit d699bcb4 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

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