import type request from 'supertest'; export type ControllerRoute = { controllerName: string; handlerName: string; method: string; path: string; }; export type HttpServer = Parameters[0]; export type RouteTestCase = (server: HttpServer) => Promise;