flutter_test テストが機能しません。生成されたゴールデンを表示すると問題があるようです。以下の例を参照してください。
import 'package:flutter_test/flutter_test.dart';
import 'package:flutter/material.dart';
import 'package:golden_toolkit/golden_toolkit.dart';
void main() {
testGoldens('Not working', (WidgetTester tester) async {
await tester.pumpWidget(MaterialApp(
home: Scaffold(
body: Text('hello, world',
style: TextStyle(
color: Colors.green, backgroundColor: Colors.red)))));
await expectLater(find.byType(Material),
matchesGoldenFile('destination.png'));
});
}
これにより、テキストがすべてある種の塗りつぶされたブロックのように見えるスクリーンショットが生成されます (赤い背景色と緑のテキスト色に注意してください)。
誰かがこれを見た、または何が間違っているのか知っていますか?