1
0
Fork 0
mirror of synced 2024-07-07 15:25:52 +12:00

Fix exports

This commit is contained in:
Adria Navarro 2024-02-12 12:34:39 +01:00
parent 231c8ccaab
commit 8651a836a5

View file

@ -89,7 +89,7 @@ export interface TableToBuild extends Omit<Table, "sourceId" | "sourceType"> {
sourceType?: TableSourceType sourceType?: TableSourceType
} }
class TestConfiguration { export default class TestConfiguration {
server: any server: any
request: supertest.SuperTest<supertest.Test> | undefined request: supertest.SuperTest<supertest.Test> | undefined
started: boolean started: boolean
@ -911,5 +911,3 @@ class TestConfiguration {
return await this._req(config, null, layoutController.save) return await this._req(config, null, layoutController.save)
} }
} }
export = TestConfiguration