diff --git a/tests/integration_test/e2e_test.dart b/tests/integration_test/e2e_test.dart index 7c771acd70f9..59a61fe6ed8e 100644 --- a/tests/integration_test/e2e_test.dart +++ b/tests/integration_test/e2e_test.dart @@ -45,10 +45,12 @@ void main() { cloud_functions.main(); if (kIsWeb) { // ignore: avoid_print - print('APP_CHECK_E2E: ${const String.fromEnvironment('GITHUB_ACTIONS')}'); + print( + 'APP_CHECK_E2E: ${const String.fromEnvironment('GITHUB_ACTIONS')}'); // ignore: do_not_use_environment - if (const String.fromEnvironment('GITHUB_ACTIONS') != 'true' || const String.fromEnvironment('APP_CHECK_E2E') == 'true') { - + if (const String.fromEnvironment('GITHUB_ACTIONS') != 'true' || + // ignore: do_not_use_environment + const String.fromEnvironment('APP_CHECK_E2E') == 'true') { // Separate test for App Check on web firebase_app_check.main(); }