1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +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
}
class TestConfiguration {
export default class TestConfiguration {
server: any
request: supertest.SuperTest<supertest.Test> | undefined
started: boolean
@ -911,5 +911,3 @@ class TestConfiguration {
return await this._req(config, null, layoutController.save)
}
}
export = TestConfiguration