(name: string | MockClusterOptions, options?: MockClusterOptions)
| 48 | * @return {App} app - Application object. |
| 49 | */ |
| 50 | export function cluster(name: string | MockClusterOptions, options?: MockClusterOptions): MockApplication { |
| 51 | options = formatOptions(name, options); |
| 52 | return mm.cluster(options) as unknown as MockApplication; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * start app with single process mode |
no test coverage detected
searching dependent graphs…