mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 12:27:41 +00:00
18 lines
496 B
Dart
18 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");
|
||
|
// });
|
||
|
}
|