(name: string | MockOptions, options?: MockOptions)
| 32 | export const restore = () => mm.restore(); |
| 33 | |
| 34 | export function app(name: string | MockOptions, options?: MockOptions) { |
| 35 | options = formatOptions(name, options); |
| 36 | const app = mm.app(options); |
| 37 | return app; |
| 38 | // return app as unknown as MockApplication; |
| 39 | } |
| 40 | |
| 41 | export const createApp = app; |
| 42 |
nothing calls this directly
no test coverage detected