export function runMochaHandler()

in packages/synthetics-sdk-mocha/src/handlers.ts [26:30]


export function runMochaHandler(options: SyntheticMochaOptions) {
  // eslint-disable-next-line  @typescript-eslint/no-explicit-any
  return async (req: Request, res: Response): Promise<any> =>
    res.send(await runMocha(options));
}