stack_wallet/test/widget_tests/shake/shake_test.dart
2022-10-20 16:38:42 +02:00

35 lines
1 KiB
Dart

import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:stackwallet/utilities/theme/light_colors.dart';
import 'package:stackwallet/utilities/theme/stack_colors.dart';
import 'package:stackwallet/widgets/shake/shake.dart';
void main() {
testWidgets("Widget build", (widgetTester) async {
await widgetTester.pumpWidget(
MaterialApp(
theme: ThemeData(
extensions: [
StackColors.fromStackColorTheme(LightColors()),
],
),
home: Material(
child: Shake(
animationRange: 10,
controller: ShakeController(),
animationDuration: const Duration(milliseconds: 200),
child: Column(
children: const [
Center(
child: Text("Enter Pin"),
)
],
)),
),
),
);
expect(find.byType(Shake), findsOneWidget);
expect(find.byType(Text), findsOneWidget);
});
}