mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
Fix addArgsHelpers test
This commit is contained in:
parent
73cd49b89f
commit
52acabbc23
@ -8,7 +8,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
|
|
||||||
it('should add actions that match a pattern', () => {
|
it('should add actions that match a pattern', () => {
|
||||||
const args = inferActionsFromArgTypesRegex(({
|
const args = inferActionsFromArgTypesRegex(({
|
||||||
args: {},
|
initialArgs: {},
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters,
|
parameters,
|
||||||
} as unknown) as StoryContext);
|
} as unknown) as StoryContext);
|
||||||
@ -20,7 +20,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
|
|
||||||
it('should NOT override pre-existing args', () => {
|
it('should NOT override pre-existing args', () => {
|
||||||
const args = inferActionsFromArgTypesRegex(({
|
const args = inferActionsFromArgTypesRegex(({
|
||||||
args: { onClick: 'pre-existing value' },
|
initialArgs: { onClick: 'pre-existing value' },
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters,
|
parameters,
|
||||||
} as unknown) as StoryContext);
|
} as unknown) as StoryContext);
|
||||||
@ -29,7 +29,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
|
|
||||||
it('should NOT override pre-existing args, if null', () => {
|
it('should NOT override pre-existing args, if null', () => {
|
||||||
const args = inferActionsFromArgTypesRegex(({
|
const args = inferActionsFromArgTypesRegex(({
|
||||||
args: { onClick: null },
|
initialArgs: { onClick: null },
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters,
|
parameters,
|
||||||
} as unknown) as StoryContext);
|
} as unknown) as StoryContext);
|
||||||
@ -38,7 +38,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
|
|
||||||
it('should override pre-existing args, if undefined', () => {
|
it('should override pre-existing args, if undefined', () => {
|
||||||
const args = inferActionsFromArgTypesRegex(({
|
const args = inferActionsFromArgTypesRegex(({
|
||||||
args: { onClick: undefined },
|
initialArgs: { onClick: undefined },
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters,
|
parameters,
|
||||||
} as unknown) as StoryContext);
|
} as unknown) as StoryContext);
|
||||||
@ -47,7 +47,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
|
|
||||||
it('should do nothing if actions are disabled', () => {
|
it('should do nothing if actions are disabled', () => {
|
||||||
const args = inferActionsFromArgTypesRegex(({
|
const args = inferActionsFromArgTypesRegex(({
|
||||||
args: {},
|
initialArgs: {},
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters: {
|
parameters: {
|
||||||
...parameters,
|
...parameters,
|
||||||
@ -65,7 +65,11 @@ describe('actions parameter enhancers', () => {
|
|||||||
};
|
};
|
||||||
it('should add actions based on action.args', () => {
|
it('should add actions based on action.args', () => {
|
||||||
expect(
|
expect(
|
||||||
addActionsFromArgTypes(({ args: {}, argTypes, parameters: {} } as unknown) as StoryContext)
|
addActionsFromArgTypes(({
|
||||||
|
initialArgs: {},
|
||||||
|
argTypes,
|
||||||
|
parameters: {},
|
||||||
|
} as unknown) as StoryContext)
|
||||||
).toEqual({
|
).toEqual({
|
||||||
onClick: expect.any(Function),
|
onClick: expect.any(Function),
|
||||||
onBlur: expect.any(Function),
|
onBlur: expect.any(Function),
|
||||||
@ -76,7 +80,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
expect(
|
expect(
|
||||||
addActionsFromArgTypes(({
|
addActionsFromArgTypes(({
|
||||||
argTypes: { onClick: { action: 'clicked!' } },
|
argTypes: { onClick: { action: 'clicked!' } },
|
||||||
args: { onClick: 'pre-existing value' },
|
initialArgs: { onClick: 'pre-existing value' },
|
||||||
parameters: {},
|
parameters: {},
|
||||||
} as unknown) as StoryContext)
|
} as unknown) as StoryContext)
|
||||||
).toEqual({});
|
).toEqual({});
|
||||||
@ -86,7 +90,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
expect(
|
expect(
|
||||||
addActionsFromArgTypes(({
|
addActionsFromArgTypes(({
|
||||||
argTypes: { onClick: { action: 'clicked!' } },
|
argTypes: { onClick: { action: 'clicked!' } },
|
||||||
args: { onClick: null },
|
initialArgs: { onClick: null },
|
||||||
parameters: {},
|
parameters: {},
|
||||||
} as unknown) as StoryContext)
|
} as unknown) as StoryContext)
|
||||||
).toEqual({});
|
).toEqual({});
|
||||||
@ -96,7 +100,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
expect(
|
expect(
|
||||||
addActionsFromArgTypes(({
|
addActionsFromArgTypes(({
|
||||||
argTypes: { onClick: { action: 'clicked!' } },
|
argTypes: { onClick: { action: 'clicked!' } },
|
||||||
args: { onClick: undefined },
|
initialArgs: { onClick: undefined },
|
||||||
parameters: {},
|
parameters: {},
|
||||||
} as unknown) as StoryContext)
|
} as unknown) as StoryContext)
|
||||||
).toEqual({ onClick: expect.any(Function) });
|
).toEqual({ onClick: expect.any(Function) });
|
||||||
@ -105,7 +109,7 @@ describe('actions parameter enhancers', () => {
|
|||||||
it('should do nothing if actions are disabled', () => {
|
it('should do nothing if actions are disabled', () => {
|
||||||
expect(
|
expect(
|
||||||
addActionsFromArgTypes(({
|
addActionsFromArgTypes(({
|
||||||
args: {},
|
initialArgs: {},
|
||||||
argTypes,
|
argTypes,
|
||||||
parameters: { actions: { disable: true } },
|
parameters: { actions: { disable: true } },
|
||||||
} as unknown) as StoryContext)
|
} as unknown) as StoryContext)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user