* adding typeorm to api * switching to sqlite * switching to sqlite * switching to sqlite * migrating to sqlite * updating terraform * updating infrastructure
14 lines
382 B
TypeScript
14 lines
382 B
TypeScript
import { Test, TestingModule } from '@nestjs/testing';
|
|
import { HealthService } from './health.service';
|
|
|
|
describe('HealthService', () => {
|
|
let service: HealthService;
|
|
|
|
beforeEach(async () => {
|
|
const module: TestingModule = await Test.createTestingModule({
|
|
providers: [HealthService]
|
|
}).compile();
|
|
|
|
service = module.get<HealthService>(HealthService);
|
|
});
|
|
}); |