Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
move skip
  • Loading branch information
bparrishMines committed Jun 12, 2024
commit f21e45cf9a0a5e0e6f989f523670e5a0121e87a7
9 changes: 4 additions & 5 deletions packages/rfw/test/material_widgets_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,9 @@ void main() {
await expectLater(
find.byType(RemoteWidget),
matchesGoldenFile('goldens/material_test.material_properties.png'),
skip: !runGoldens,
// TODO(bparrishMines): Unskip once golden file is updated. See
// https://github.com/flutter/flutter/issues/150127
skip: !runGoldens || true,
);

runtime.update(testName, parseLibraryFile('''
Expand All @@ -585,10 +587,7 @@ void main() {

expect(tester.widget<Material>(find.byType(Material)).clipBehavior,
Clip.antiAlias);
},
// TODO(bparrishMines): Unskip once golden file is updated. See
// https://github.com/flutter/flutter/issues/150127
skip: true);
});

testWidgets('Slider properties', (WidgetTester tester) async {
final Runtime runtime = setupRuntime();
Expand Down