Add a (failing) test case for #11488

This commit is contained in:
Tom Coleman 2020-07-13 13:37:59 +10:00
parent badece6115
commit ec0bff819d
5 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Storyshots Text Simple 1`] = `"contents"`;

View File

@ -0,0 +1,5 @@
export default {
title: 'Text',
};
export const Simple = () => 'contents';

View File

@ -0,0 +1,3 @@
module.exports = {
stories: ['./Text.stories.js'],
};

View File

@ -0,0 +1,12 @@
import React from 'react';
export const decorators = [
(StoryFn, { parameters, globals }) => (
<div>
{parameters.prefix} <StoryFn /> {globals.suffix}
</div>
),
];
export const parameters = { prefix: 'prefix' };
export const globals = { suffix: 'suffix' };

View File

@ -0,0 +1,9 @@
import path from 'path';
import initStoryshots from '../dist';
// jest.mock('@storybook/node-logger');
initStoryshots({
framework: 'react',
configPath: path.join(__dirname, 'exported_metadata'),
});