mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-08-18 02:56:42 +00:00

* open Pro screen on tap * removed Pro section from Settings screen * made Pro badge smaller * updated goldens * fixed offering padding * Update metering_screen.png * fixed pro features width * brought back enabled adapter * reworked `DialogSwitchListItem` * allow more free actions * typo * removed settings screen checks * macos-latest * typo * added test for guard Pro tap
27 lines
699 B
Dart
27 lines
699 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
import 'e2e_test.dart';
|
|
import 'guard_pro_tap_test.dart';
|
|
import 'logbook_test.dart';
|
|
import 'metering_screen_layout_test.dart';
|
|
import 'purchases_test.dart';
|
|
import 'utils/platform_channel_mock.dart';
|
|
|
|
void main() {
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
setUpAll(() {
|
|
mockCameraFocalLength();
|
|
});
|
|
|
|
tearDownAll(() {
|
|
mockCameraFocalLength();
|
|
});
|
|
|
|
testPurchases('Purchase & refund premium features');
|
|
testGuardProTap('Guard Pro tap');
|
|
testToggleLayoutFeatures('Toggle metering screen layout features');
|
|
testLogbook('Logbook');
|
|
testE2E('e2e');
|
|
}
|