seedling/source/rest/src/common/health/health.controller.spec.ts
romanjaros da23b80647
All checks were successful
forgejo/Procyon/seedling/pipeline/head This commit looks good
Rename source folders
2023-10-24 20:43:21 +02:00

14 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');
});
});