Closed Arthurius closed 1 year ago
Thanks for creating this issue!
@Kirpal @samandmoore I'll research this issue and provide a PR with my findings and a fix.
I also noticed this and opened a PR for it https://github.com/Betterment/alchemist/pull/95
Any updates on this? 🙏
Any update on when this fix will be released? Thanks!
@Arthurius it's out now 🙂
Is there an existing issue for this?
Version
0.6.1
Description
Running Alchemist golden tests in Flutter 3.13.0 throws an error:
Steps to reproduce
void main() { group('ListTile Golden Tests', () { goldenTest( 'renders correctly', fileName: 'list_tile', builder: () => GoldenTestGroup( scenarioConstraints: const BoxConstraints(maxWidth: 600), children: [ GoldenTestScenario( name: 'with title', child: ListTile( title: Text('ListTile.title'), ), ), GoldenTestScenario( name: 'with title and subtitle', child: ListTile( title: Text('ListTile.title'), subtitle: Text('ListTile.subtitle'), ), ), GoldenTestScenario( name: 'with trailing icon', child: ListTile( title: Text('ListTile.title'), trailing: Icon(Icons.chevron_right_rounded), ), ), ], ), ); }); }