Unverified Commit 659dc812 authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Testing tryjob triage (#47893)

parent 43a8c243
......@@ -530,6 +530,16 @@ 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 {}
......
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