Revert "Testing tryjob triage (#47893)" (#47985)

This reverts commit 659dc8129d4edb9166e9a0d600439d135740933f.
This commit is contained in:
Kate Lovett 2019-12-30 13:09:14 -08:00 committed by GitHub
parent 173322dc78
commit 4fbef2a4a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -530,16 +530,6 @@ void main() {
findsOneWidget,
);
});
testWidgets('Test for tryjob triage', (WidgetTester tester) async {
await tester.pumpWidget(RepaintBoundary(
child: Container(
color: const Color(0xFF00FF00)
)
));
final Finder finder = find.byType(RepaintBoundary);
await expectLater(finder, matchesGoldenFile('test.tryjob.png'));
});
}
class _MockPaintingContext extends Mock implements PaintingContext {}