2022-08-23 10:37:13 +02:00
|
|
|
import TestConfiguration from "./TestConfiguration"
|
|
|
|
import structures from "./structures"
|
|
|
|
import mocks from "./mocks"
|
2022-08-25 20:41:47 +02:00
|
|
|
import API from "./api"
|
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-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
|