Skip to content

Commit 7651c99

Browse files
committed
Test for function definition
1 parent 81d411c commit 7651c99

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Diff for: packages/analytics/__tests__/analytics.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import {
44
firebase,
55
getAnalytics,
66
initializeAnalytics,
7+
getGoogleAnalyticsClientId,
78
logEvent,
89
setAnalyticsCollectionEnabled,
910
setSessionTimeoutDuration,
@@ -711,6 +712,10 @@ describe('Analytics', function () {
711712
expect(initializeAnalytics).toBeDefined();
712713
});
713714

715+
it('`getGoogleAnalyticsClientId` function is properly exposed to end user', function () {
716+
expect(getGoogleAnalyticsClientId).toBeDefined();
717+
});
718+
714719
it('`logEvent` function is properly exposed to end user', function () {
715720
expect(logEvent).toBeDefined();
716721
});

0 commit comments

Comments
 (0)