mirror of
https://github.com/PostHog/posthog.git
synced 2024-12-01 04:12:23 +01:00
30b6692920
* WIP: get cypress something doing * Get a test running * Get css loading, stub posthog * Move helpers to separate file * Givens > given2 It plays nicer with beforeEach * Test for session filters * Test date navigation * Test filtering * Try keep old tests running * Try get tests running under CI * Prettify fixtures * Cleanup, use cypress 6 * Add yarn build * Fix e2e cypress tests * given2 => givens * Rename `frontend-test-runner` to `e2e-test-runner` * Fix cypress test * Add webpack-preprocessor as a devDependency * Improve freezing time * Make css inclusions automatic for component tests
22 lines
479 B
TypeScript
22 lines
479 B
TypeScript
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import { Provider } from 'react-redux'
|
|
import { getContext } from 'kea'
|
|
|
|
import { App } from 'scenes/App'
|
|
import { initKea } from './initKea'
|
|
|
|
import { loadPostHogJS } from './loadPostHogJS'
|
|
import { GlobalStyles } from './GlobalStyles'
|
|
|
|
loadPostHogJS()
|
|
initKea()
|
|
|
|
ReactDOM.render(
|
|
<Provider store={getContext().store}>
|
|
<GlobalStyles />
|
|
<App />
|
|
</Provider>,
|
|
document.getElementById('root')
|
|
)
|