2022-11-14 23:55:47 +01:00
|
|
|
import mocks from "./mocks"
|
2022-11-11 12:10:07 +01:00
|
|
|
import { generator } from "@budibase/backend-core/tests"
|
2022-08-23 10:37:13 +02:00
|
|
|
import TestConfiguration from "./TestConfiguration"
|
|
|
|
import structures from "./structures"
|
2022-08-25 20:41:47 +02:00
|
|
|
import API from "./api"
|
2022-11-11 12:10:07 +01:00
|
|
|
import { v4 as uuid } from "uuid"
|
2022-08-23 10:37:13 +02:00
|
|
|
|
2022-08-25 20:41:47 +02:00
|
|
|
const pkg = {
|
2022-08-23 10:37:13 +02:00
|
|
|
structures,
|
2022-11-11 12:10:07 +01:00
|
|
|
generator,
|
|
|
|
uuid,
|
2022-08-25 20:41:47 +02:00
|
|
|
TENANT_1: structures.TENANT_1,
|
2022-08-23 10:37:13 +02:00
|
|
|
mocks,
|
2022-08-25 20:41:47 +02:00
|
|
|
TestConfiguration,
|
|
|
|
API,
|
2022-08-23 10:37:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export = pkg
|