mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:51:05 +08:00
Add a (failing) test case for #11488
This commit is contained in:
parent
badece6115
commit
ec0bff819d
@ -0,0 +1,3 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`Storyshots Text Simple 1`] = `"contents"`;
|
@ -0,0 +1,5 @@
|
||||
export default {
|
||||
title: 'Text',
|
||||
};
|
||||
|
||||
export const Simple = () => 'contents';
|
@ -0,0 +1,3 @@
|
||||
module.exports = {
|
||||
stories: ['./Text.stories.js'],
|
||||
};
|
@ -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' };
|
@ -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'),
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user