Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: lazy load ValueSelector to fix Storybook test runner #298

Merged
merged 1 commit into from
Jun 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions src/components/data-entry/QueryItem/ValueSelector.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
import { type Meta, type StoryObj } from '@storybook/react'
import ValueSelector from './ValueSelector'
import type ValueSelector from './ValueSelector'
import { Suspense, lazy } from 'react'

const _ValueSelector = lazy(async () => await import('./ValueSelector'))

const meta: Meta<typeof ValueSelector> = {
title: 'Aquarium/Data Entry/QueryItem/ValueSelector',
component: ValueSelector,
component: _ValueSelector,
parameters: {
docs: {
description: {
Expand All @@ -12,11 +15,17 @@ const meta: Meta<typeof ValueSelector> = {
},
},
},

decorators: [
Story => (
<Suspense>
<Story />
</Suspense>
),
],
args: {},
}
export default meta

type Story = StoryObj<typeof ValueSelector>

export const DontUseThisOrYouWillBeFired: Story = {}
export const DontUseThisOrYouWillBeFired: Story = {}
Loading