stack_wallet/test/widget_tests/shake/shake_test.dart

43 lines
1.1 KiB
Dart
Raw Normal View History

2022-10-20 10:49:45 +00:00
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
2023-05-12 20:02:04 +00:00
import 'package:stackwallet/models/isar/stack_theme.dart';
import 'package:stackwallet/themes/stack_colors.dart';
2022-10-20 14:38:42 +00:00
import 'package:stackwallet/widgets/shake/shake.dart';
2023-05-12 20:02:04 +00:00
import '../../sample_data/theme_json.dart';
2022-10-20 14:38:42 +00:00
void main() {
testWidgets("Widget build", (widgetTester) async {
await widgetTester.pumpWidget(
MaterialApp(
theme: ThemeData(
extensions: [
2023-05-08 17:59:00 +00:00
StackColors.fromStackColorTheme(
StackTheme.fromJson(
2023-05-12 20:02:04 +00:00
json: lightThemeJsonMap,
2023-05-08 17:59:00 +00:00
),
),
2022-10-20 14:38:42 +00:00
],
),
home: Material(
child: Shake(
2023-07-04 00:25:18 +00:00
animationRange: 10,
controller: ShakeController(),
animationDuration: const Duration(milliseconds: 200),
child: const Column(
children: [
Center(
child: Text("Enter Pin"),
)
],
),
),
2022-10-20 14:38:42 +00:00
),
),
);
expect(find.byType(Shake), findsOneWidget);
expect(find.byType(Text), findsOneWidget);
});
}