Add shallow render snapshot as a test body

This commit is contained in:
Alexander Nilsson 2017-06-09 09:54:12 +02:00
parent 6cf80a2cdf
commit 424e1bb63d
2 changed files with 8 additions and 1 deletions

View File

@ -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;

View File

@ -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);