Refactor tenant ORM integration (#1650)

* Refactor tenant ORM integration

* fix tests
This commit is contained in:
Weiko
2023-09-19 17:58:28 +02:00
committed by GitHub
parent 07684c4f08
commit ec90c77ec1
38 changed files with 747 additions and 531 deletions

View File

@ -0,0 +1,19 @@
import { Test, TestingModule } from '@nestjs/testing';
import { MetadataService } from './metadata.service';
describe('MetadataService', () => {
let service: MetadataService;
beforeEach(async () => {
const module: TestingModule = await Test.createTestingModule({
providers: [MetadataService],
}).compile();
service = module.get<MetadataService>(MetadataService);
});
it('should be defined', () => {
expect(service).toBeDefined();
});
});