mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Add tag story
This commit is contained in:
parent
15a68c502f
commit
2911f55a0b
29
code/lib/store/template/stories/tags.stories.ts
Normal file
29
code/lib/store/template/stories/tags.stories.ts
Normal file
@ -0,0 +1,29 @@
|
||||
import globalThis from 'global';
|
||||
import type { PartialStoryFn, PlayFunctionContext, StoryContext } from '@storybook/csf';
|
||||
import { within } from '@storybook/testing-library';
|
||||
import { expect } from '@storybook/jest';
|
||||
|
||||
export default {
|
||||
component: globalThis.Components.Pre,
|
||||
tags: ['component-one', 'component-two'],
|
||||
decorators: [
|
||||
(storyFn: PartialStoryFn, context: StoryContext) => {
|
||||
return storyFn({
|
||||
args: { object: context.tags },
|
||||
});
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
export const Inheritance = {
|
||||
tags: ['story-one', 'story-two'],
|
||||
play: async ({ canvasElement }: PlayFunctionContext) => {
|
||||
const canvas = within(canvasElement);
|
||||
await expect(JSON.parse(canvas.getByTestId('pre').innerText)).toEqual([
|
||||
'story-one',
|
||||
'story-two',
|
||||
'component-one',
|
||||
'component-two',
|
||||
]);
|
||||
},
|
||||
};
|
Loading…
x
Reference in New Issue
Block a user