9 lines
301 B
TypeScript
9 lines
301 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { isPostHogSessionRecordingEnabled } from './posthog';
|
|
|
|
describe('isPostHogSessionRecordingEnabled', () => {
|
|
it('keeps session recording disabled by default', () => {
|
|
expect(isPostHogSessionRecordingEnabled()).toBe(false);
|
|
});
|
|
});
|