1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-06-29 00:57:50 +02:00
market/tests/unit/storyshots.test.tsx

15 lines
445 B
TypeScript

import initStoryshots from '@storybook/addon-storyshots'
import { render, wait } from '@testing-library/react'
// Stories are render-tested with @testing-library/react,
// overwriting default snapshot testing behavior
initStoryshots({
asyncJest: true,
test: async ({ story, done }) => {
const storyElement = story.render()
// render the story with @testing-library/react
render(storyElement)
await wait(() => done())
}
})