whisper-money/resources/js/lib/posthog.test.ts

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);
});
});