mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 16:40:41 +00:00
18 lines
519 B
Dart
18 lines
519 B
Dart
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'e2e_test.dart';
|
|
import 'metering_screen_layout_test.dart';
|
|
import 'purchases_test.dart';
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
testPurchases('Purchase & refund premium features');
|
|
testToggleLayoutFeatures('Toggle metering screen layout features');
|
|
testE2E(
|
|
'e2e',
|
|
screenshotCallback: () async {
|
|
await IntegrationTestWidgetsFlutterBinding.instance.takeScreenshot('screenshot_e2e');
|
|
},
|
|
);
|
|
}
|