Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 63x 9x 63x 63x | import React from "react"; import type { ComponentStoryCy, ComponentStoryObjCy } from "orphic-cypress"; import { ClickCount } from "../../Button"; export default { component: ClickCount, cySkip: true, // when using an external file, the argTypesRegex doesn't get brought in from main 'parameters' // so you either have to add this, or manually provide the global preview to `composeStories` // parameters: { // actions: { // argTypesRegex: "^on[A-Z].*", // }, // }, }; export const ArgtypeActionStub: ComponentStoryCy<typeof ClickCount> = ( args ) => <ClickCount {...args} />; ArgtypeActionStub.argTypes = { onClick: { action: "myClickStub" }, }; // story-code @end @include-start export const ImplicitArgtypeActionStubViaRegex: ComponentStoryObjCy< typeof ClickCount > = { args: { label: "Call via Regex" }, }; |