0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/.storybook/app-context.ts

14 lines
501 B
TypeScript

import { AppContext } from '~/types'
import { MOCK_DEFAULT_TEAM } from 'lib/api.mock'
export const getStorybookAppContext = (): AppContext => ({
anonymous: false,
current_team: MOCK_DEFAULT_TEAM,
current_user: undefined as any, // undefined triggers a fetch and lets us mock the data
default_event_name: '$pageview',
persisted_feature_flags: [],
commit_sha: undefined,
preflight: null as any, // null triggers a fetch and lets us mock the data
switched_team: null,
})