We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e968c0 commit 2f8694cCopy full SHA for 2f8694c
tests/integration_test/e2e_test.dart
@@ -45,10 +45,12 @@ void main() {
45
cloud_functions.main();
46
if (kIsWeb) {
47
// ignore: avoid_print
48
- print('APP_CHECK_E2E: ${const String.fromEnvironment('GITHUB_ACTIONS')}');
+ print(
49
+ 'APP_CHECK_E2E: ${const String.fromEnvironment('GITHUB_ACTIONS')}');
50
// ignore: do_not_use_environment
- if (const String.fromEnvironment('GITHUB_ACTIONS') != 'true' || const String.fromEnvironment('APP_CHECK_E2E') == 'true') {
51
-
+ if (const String.fromEnvironment('GITHUB_ACTIONS') != 'true' ||
52
+ // ignore: do_not_use_environment
53
+ const String.fromEnvironment('APP_CHECK_E2E') == 'true') {
54
// Separate test for App Check on web
55
firebase_app_check.main();
56
}
0 commit comments