21 lines
595 B
TypeScript
21 lines
595 B
TypeScript
import { StepRunner } from 'storybook/internal/types';
|
|
|
|
interface InteractionsParameters {
|
|
/**
|
|
* Interactions configuration
|
|
*
|
|
* @see https://storybook.js.org/docs/essentials/interactions
|
|
*/
|
|
test: {
|
|
/** Ignore unhandled errors during test execution */
|
|
dangerouslyIgnoreUnhandledErrors?: boolean;
|
|
/** Whether to throw exceptions coming from the play function */
|
|
throwPlayFunctionExceptions?: boolean;
|
|
};
|
|
}
|
|
|
|
declare const runStep: StepRunner;
|
|
declare const parameters: InteractionsParameters['test'];
|
|
|
|
export { parameters, runStep };
|