mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
fixing test issues
This commit is contained in:
parent
e179c14b81
commit
d4b8b9ae35
@ -35,12 +35,9 @@ export const Inheritance = {
|
||||
play: async ({ canvasElement }: PlayFunctionContext<any>) => {
|
||||
// NOTE: these stories don't test project-level args inheritance as it is too problematic
|
||||
// to have an arg floating around that will apply too *all* other stories in our sandboxes.
|
||||
console.log('JSON ', JSON.parse(within(canvasElement).getByTestId('pre').innerText));
|
||||
await expect(JSON.parse(within(canvasElement).getByTestId('pre').innerText)).toEqual({
|
||||
componentArg: 'componentArg',
|
||||
storyArg: 'storyArg',
|
||||
object: {
|
||||
a: 'story',
|
||||
},
|
||||
a: 'story',
|
||||
});
|
||||
},
|
||||
};
|
||||
@ -57,7 +54,8 @@ export const Targets = {
|
||||
play: async ({ canvasElement }: PlayFunctionContext<any>) => {
|
||||
// Check that `a` doesn't end up set
|
||||
await expect(JSON.parse(within(canvasElement).getByTestId('pre').innerText)).toEqual({
|
||||
b: 'b',
|
||||
a: 'component',
|
||||
b: 'component',
|
||||
});
|
||||
},
|
||||
};
|
||||
|
@ -1,12 +1,10 @@
|
||||
import type { Meta, StoryObj } from '@storybook/vue3';
|
||||
import { UPDATE_STORY_ARGS } from '@storybook/core-events';
|
||||
import type { Channel } from '@storybook/channels';
|
||||
import { within } from '@storybook/testing-library';
|
||||
|
||||
import type { PlayFunctionContext } from '@storybook/csf';
|
||||
import Button from './Button.vue';
|
||||
|
||||
const channel = (window as any).__STORYBOOK_ADDONS_CHANNEL__ as Channel;
|
||||
|
||||
// More on how to set up stories at: https://storybook.js.org/docs/7.0/vue/writing-stories/introduction
|
||||
const meta = {
|
||||
title: 'Example/Button',
|
||||
@ -59,10 +57,10 @@ export const Small: Story = {
|
||||
export const Reactive: Story = {
|
||||
args: {
|
||||
label: 'Button',
|
||||
primary: true,
|
||||
},
|
||||
// test that args are updated correctly in rective mode
|
||||
play: async ({ args, canvasElement, loaded }: any) => {
|
||||
play: async ({ canvasElement, id }: PlayFunctionContext<any>) => {
|
||||
const channel = globalThis.__STORYBOOK_ADDONS_CHANNEL__;
|
||||
const canvas = within(canvasElement);
|
||||
const reactiveButton = await canvas.getByRole('button');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user