We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17ed051 commit 5a9325cCopy full SHA for 5a9325c
test/unit/GoogleAnalyticsEventProcessor/persistTime_test.js
@@ -21,11 +21,11 @@ describe('The `persistTime` method ' +
21
return expect(eventProcessor.persistTime(key, ''));
22
}
23
24
- it('returns default when key is not clientId', () => {
+ it('returns default when key is not client_id', () => {
25
expectPersistTime('test').toBe(-1);
26
});
27
28
- describe('When key is clientId', () => {
+ describe('When key is client_id', () => {
29
it('returns two years when client_id_expires is not set', () => {
30
expectPersistTime('client_id').toBe(2 * 365 * 24 * 60 * 60);
31
0 commit comments