1
0
Fork 0
mirror of synced 2024-07-05 22:40:39 +12:00
This commit is contained in:
Adria Navarro 2023-09-19 12:02:52 +02:00
parent 9cd7ef7827
commit 63ab14865a
2 changed files with 2 additions and 1 deletions

View file

@ -18,7 +18,7 @@ class DBTestConfiguration {
// TENANCY // TENANCY
doInTenant(task: any) { doInTenant<T>(task: () => Promise<T>) {
return context.doInTenant(this.tenantId, () => { return context.doInTenant(this.tenantId, () => {
return task() return task()
}) })

View file

@ -1 +1,2 @@
export * from "./core/utilities" export * from "./core/utilities"
export * from "./extra"