Add tag story

This commit is contained in:
Tom Coleman 2022-10-26 16:38:05 +11:00
parent 15a68c502f
commit 2911f55a0b

View 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',
]);
},
};