stack_wallet/test/widget_tests/desktop/desktop_app_bar_test.dart

42 lines
1.3 KiB
Dart
Raw Normal View History

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';
2022-12-01 14:48:23 +00:00
import 'package:stackwallet/pages_desktop_specific/my_stack_view/exit_to_my_stack_button.dart';
import 'package:stackwallet/themes/stack_colors.dart';
import 'package:stackwallet/widgets/custom_buttons/app_bar_icon_button.dart';
import 'package:stackwallet/widgets/desktop/desktop_app_bar.dart';
2023-05-12 20:02:04 +00:00
import '../../sample_data/theme_json.dart';
void main() {
testWidgets("Test DesktopAppBar widget", (widgetTester) async {
final key = UniqueKey();
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,
applicationThemesDirectoryPath: "test",
2023-05-08 17:59:00 +00:00
),
),
],
),
home: Material(
child: DesktopAppBar(
key: key,
isCompactHeight: false,
leading: const AppBarBackButton(),
trailing: const ExitToMyStackButton(),
center: const Text("Some Text"),
),
),
),
);
expect(find.byType(DesktopAppBar), findsOneWidget);
});
}