mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
14 lines
376 B
Dart
14 lines
376 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');
|
||
|
}
|