mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
17 lines
496 B
Dart
17 lines
496 B
Dart
void main() {
|
|
// testWidgets("LoadingView build correctly", (tester) async {
|
|
// await tester.pumpWidget(
|
|
// const MaterialApp(
|
|
// home: LoadingView(),
|
|
// ),
|
|
// );
|
|
//
|
|
// final imageFinder = find.byType(Image);
|
|
// expect(imageFinder, findsOneWidget);
|
|
//
|
|
// final imageSource =
|
|
// ((imageFinder.evaluate().single.widget as Image).image as AssetImage)
|
|
// .assetName;
|
|
// expect(imageSource, "assets/images/splash.png");
|
|
// });
|
|
}
|