(
harness: FunctionHarness,
components: FunctionComponents,
mode: string,
props: {[key: string]: unknown} = {},
)
| 79 | ) => harness.render(components.State, {mode, ...props}); |
| 80 | |
| 81 | const renderWriter = ( |
| 82 | harness: FunctionHarness, |
| 83 | components: FunctionComponents, |
| 84 | mode: string, |
| 85 | props: {[key: string]: unknown} = {}, |
| 86 | ) => harness.render(components.Writer, {mode, ...props}); |
| 87 | |
| 88 | export const testStateFunctions = ( |
| 89 | framework: string, |
no test coverage detected
searching dependent graphs…