( app = makeApp(), plugin = makePlugin(), executor = makeChoiceExecutor(), )
| 175 | } |
| 176 | |
| 177 | function getApi( |
| 178 | app = makeApp(), |
| 179 | plugin = makePlugin(), |
| 180 | executor = makeChoiceExecutor(), |
| 181 | ) { |
| 182 | return { |
| 183 | api: QuickAddApi.GetApi(app, plugin, executor as never), |
| 184 | app, |
| 185 | plugin, |
| 186 | executor, |
| 187 | }; |
| 188 | } |
| 189 | |
| 190 | beforeEach(() => { |
| 191 | vi.clearAllMocks(); |
no test coverage detected