mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Add shallow render snapshot as a test body
This commit is contained in:
parent
6cf80a2cdf
commit
424e1bb63d
@ -7,7 +7,7 @@ import runWithRequireContext from './require_context';
|
||||
import createChannel from './storybook-channel-mock';
|
||||
import { snapshot } from './test-bodies';
|
||||
|
||||
export { snapshotWithOptions, snapshot, renderOnly } from './test-bodies';
|
||||
export { snapshotWithOptions, snapshot, shallowSnapshot, renderOnly } from './test-bodies';
|
||||
|
||||
let storybook;
|
||||
let configPath;
|
||||
|
@ -1,4 +1,5 @@
|
||||
import renderer from 'react-test-renderer';
|
||||
import shallow from 'react-test-renderer/shallow';
|
||||
|
||||
export const snapshotWithOptions = options => ({ story, context }) => {
|
||||
const storyElement = story.render(context);
|
||||
@ -8,6 +9,12 @@ export const snapshotWithOptions = options => ({ story, context }) => {
|
||||
|
||||
export const snapshot = snapshotWithOptions({});
|
||||
|
||||
export function shallowSnapshot({ story, context }) {
|
||||
const shallowRenderer = shallow.createRenderer();
|
||||
const result = shallowRenderer.render(story.render(context));
|
||||
expect(result).toMatchSnapshot();
|
||||
}
|
||||
|
||||
export function renderOnly({ story, context }) {
|
||||
const storyElement = story.render(context);
|
||||
renderer.create(storyElement);
|
||||
|
Loading…
x
Reference in New Issue
Block a user