add: add modules entity

This commit is contained in:
ilham
2021-12-02 22:55:15 +07:00
parent 770231744d
commit 288a6e5b69
13 changed files with 352 additions and 0 deletions

View File

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