UNPKG

@budibase/worker

Version:
18 lines (14 loc) 362 B
import TestConfiguration from "../TestConfiguration" import { SuperTest, Test } from "supertest" export interface TestAPIOpts { headers?: any status?: number } export abstract class TestAPI { config: TestConfiguration request: SuperTest<Test> constructor(config: TestConfiguration) { this.config = config this.request = config.request } }