15 lines
338 B
TypeScript
15 lines
338 B
TypeScript
|
// @ts-nocheck
|
||
|
import { HealthController } from './health.controller';
|
||
|
|
||
|
describe('AppController (e2e)', () => {
|
||
|
let healthController: HealthController;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
healthController = new HealthController();
|
||
|
});
|
||
|
|
||
|
it('should return OK response', async () => {
|
||
|
expect(await healthController.status()).toEqual('OK');
|
||
|
});
|
||
|
});
|