UNPKG

tesugen

Version:

Setup extendable API-testing framework

14 lines (10 loc) 363 B
import { TestClient } from './client'; import { testingRoutes } from './routes/testRoutes'; import { testAgent } from './testAgent'; export class TestController { testClientShould: TestClient; constructor() { this.testClientShould = new TestClient(testAgent, testingRoutes); } } export const ctx: TestController = new TestController();