mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
39 lines
1.1 KiB
Dart
39 lines
1.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
|
import 'package:stackwallet/themes/stack_colors.dart';
|
|
import 'package:stackwallet/widgets/desktop/custom_text_button.dart';
|
|
|
|
import '../../sample_data/theme_json.dart';
|
|
|
|
void main() {
|
|
testWidgets("Test text button ", (widgetTester) async {
|
|
final key = UniqueKey();
|
|
|
|
await widgetTester.pumpWidget(
|
|
MaterialApp(
|
|
theme: ThemeData(
|
|
extensions: [
|
|
StackColors.fromStackColorTheme(
|
|
StackTheme.fromJson(
|
|
json: lightThemeJsonMap,
|
|
applicationThemesDirectoryPath: "test",
|
|
),
|
|
),
|
|
],
|
|
),
|
|
home: Material(
|
|
child: CustomTextButtonBase(
|
|
key: key,
|
|
width: 200,
|
|
height: 300,
|
|
textButton:
|
|
const TextButton(onPressed: null, child: Text("Some Text")),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
expect(find.byType(CustomTextButtonBase), findsOneWidget);
|
|
});
|
|
}
|