import { request, expect, createTenantFactory, createTenant, bindTenantModel, login, systemFactory, dropTenant, } from '~/testInit'; import CacheService from '@/services/Cache'; let tenantWebsite; let tenantFactory; let loginRes; beforeEach(async () => { tenantWebsite = await createTenant(); tenantFactory = createTenantFactory(tenantWebsite.tenantDb); bindTenantModel(tenantWebsite.tenantDb); loginRes = await login(tenantWebsite); CacheService.flush(); }); afterEach(async () => { await dropTenant(tenantWebsite); loginRes = null; tenantFactory = null; tenantWebsite = null; }); export { tenantWebsite, tenantFactory, systemFactory, loginRes, };