1
0
Fork 0
mirror of synced 2024-05-18 11:23:28 +12:00
budibase/packages/worker/src/tests/index.ts

19 lines
369 B
TypeScript
Raw Normal View History

import mocks from "./mocks"
import { generator } from "@budibase/backend-core/tests"
2022-08-23 20:37:13 +12:00
import TestConfiguration from "./TestConfiguration"
import structures from "./structures"
import API from "./api"
import { v4 as uuid } from "uuid"
2022-08-23 20:37:13 +12:00
const pkg = {
2022-08-23 20:37:13 +12:00
structures,
generator,
uuid,
TENANT_1: structures.TENANT_1,
2022-08-23 20:37:13 +12:00
mocks,
TestConfiguration,
API,
2022-08-23 20:37:13 +12:00
}
export = pkg