mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
27 lines
869 B
Dart
27 lines
869 B
Dart
import 'package:event_bus/event_bus.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/custom_loading_overlay.dart';
|
|
|
|
void main() {
|
|
testWidgets("Test wiget displays correct text", (widgetTester) async {
|
|
final eventBus = EventBus();
|
|
await widgetTester.pumpWidget(
|
|
MaterialApp(
|
|
theme: ThemeData(
|
|
extensions: [
|
|
StackColors.fromStackColorTheme(LightColors()),
|
|
],
|
|
),
|
|
home: Material(
|
|
child: CustomLoadingOverlay(
|
|
message: "Updating exchange rate", eventBus: eventBus),
|
|
),
|
|
),
|
|
);
|
|
|
|
expect(find.text("Updating exchange rate"), findsOneWidget);
|
|
});
|
|
}
|