Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
russellwheatley committed Sep 10, 2024
1 parent 1e968c0 commit 2f8694c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions tests/integration_test/e2e_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
Expand Down

0 comments on commit 2f8694c

Please sign in to comment.