Skip to content

Commit 6b8917d

Browse files
committed
chore: update skip conditions for Firebase Analytics E2E tests to include web platform
1 parent 78cfd2d commit 6b8917d

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

tests/integration_test/firebase_analytics/firebase_analytics_e2e_test.dart

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,9 @@ void main() {
373373
),
374374
);
375375
},
376-
skip: defaultTargetPlatform != TargetPlatform.iOS &&
377-
defaultTargetPlatform != TargetPlatform.macOS,
376+
skip: kIsWeb ||
377+
(defaultTargetPlatform != TargetPlatform.iOS &&
378+
defaultTargetPlatform != TargetPlatform.macOS),
378379
);
379380

380381
test(
@@ -391,8 +392,9 @@ void main() {
391392
),
392393
);
393394
},
394-
skip: defaultTargetPlatform != TargetPlatform.iOS &&
395-
defaultTargetPlatform != TargetPlatform.macOS,
395+
skip: kIsWeb ||
396+
(defaultTargetPlatform != TargetPlatform.iOS &&
397+
defaultTargetPlatform != TargetPlatform.macOS),
396398
);
397399
});
398400
});

0 commit comments

Comments
 (0)