We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81d411c commit 7651c99Copy full SHA for 7651c99
packages/analytics/__tests__/analytics.test.ts
@@ -4,6 +4,7 @@ import {
4
firebase,
5
getAnalytics,
6
initializeAnalytics,
7
+ getGoogleAnalyticsClientId,
8
logEvent,
9
setAnalyticsCollectionEnabled,
10
setSessionTimeoutDuration,
@@ -711,6 +712,10 @@ describe('Analytics', function () {
711
712
expect(initializeAnalytics).toBeDefined();
713
});
714
715
+ it('`getGoogleAnalyticsClientId` function is properly exposed to end user', function () {
716
+ expect(getGoogleAnalyticsClientId).toBeDefined();
717
+ });
718
+
719
it('`logEvent` function is properly exposed to end user', function () {
720
expect(logEvent).toBeDefined();
721
0 commit comments