mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
fded6fdf62
* test: Regular checkup of visual regression tests * Fix billing gauge animation Animations done in JS can't be stopped automatically by the Storybook test runner. CSS animations can, easily, and they are anyway the cleaner and more performant way of achieving the same here. * Rename misleading feature flag `recentInsights` to `relatedInsights` * Mock homepage endpoints to avoid error toasts * Wait for the recordings list in the notebook node story * Fix `featureFlagLogic` * Wait for `.NotebookNode__content` * Try to optimize * Screenshot failures and upload as artifacts * Fix remaining failures * Increase timeouts * Fix rendering of Survey stories * Remove `clang-format` * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Fix alignment of series name in insights details * Try to fix experiment story flakiness * Include toasts in loaders * Fix superfluous toast * Fix un-awaited breakpoints * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * Update UI snapshots for `chromium` (1) * Make login snapshots slightly stabler * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * Skip incorrect Surveys story * Update UI snapshots for `chromium` (2) * Revert msw upgrade --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
17 lines
613 B
JavaScript
17 lines
613 B
JavaScript
const { getJestConfig } = require('@storybook/test-runner')
|
|
|
|
/**
|
|
* @type {import('@jest/types').Config.InitialOptions}
|
|
*/
|
|
module.exports = {
|
|
// The default configuration comes from @storybook/test-runner
|
|
...getJestConfig(),
|
|
/** Add your own overrides below
|
|
* @see https://jestjs.io/docs/configuration
|
|
*/
|
|
forceExit: true,
|
|
// For jest-image-snapshot, see https://github.com/americanexpress/jest-image-snapshot#removing-outdated-snapshots
|
|
reporters: ['default', 'jest-image-snapshot/src/outdated-snapshot-reporter.js'],
|
|
testEnvironment: './test-runner-jest-environment.js',
|
|
}
|