Skip to content

Commit dc47364

Browse files
committed
test(messaging): modular isSupported should not be nested in query export
1 parent 79b2ef8 commit dc47364

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/messaging/e2e/messaging.e2e.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -895,14 +895,14 @@ describe('messaging()', function () {
895895
await experimentalSetDeliveryMetricsExportedToBigQueryEnabled(getMessaging(), true);
896896
should.equal(isDeliveryMetricsExportToBigQueryEnabled(getMessaging()), true);
897897
});
898+
});
898899

899-
describe('isSupported()', function () {
900-
it('should return "true" if the device or browser supports Firebase Messaging', async function () {
901-
const { isSupported, getMessaging } = messagingModular;
902-
// For android, when the play services are available, it will return "true"
903-
// iOS & web always return "true". Web can be fully implemented when the platform is supported
904-
should.equal(await isSupported(getMessaging()), true);
905-
});
900+
describe('isSupported()', function () {
901+
it('should return "true" if the device or browser supports Firebase Messaging', async function () {
902+
const { isSupported, getMessaging } = messagingModular;
903+
// For android, when the play services are available, it will return "true"
904+
// iOS & web always return "true". Web can be fully implemented when the platform is supported
905+
should.equal(await isSupported(getMessaging()), true);
906906
});
907907
});
908908
});

0 commit comments

Comments
 (0)