Files
automatisch/packages/backend/src/controllers/healthcheck/index.test.js
2024-02-12 22:50:57 +01:00

10 lines
275 B
JavaScript

import { describe, it } from 'vitest';
import request from 'supertest';
import app from '../../app.js';
describe('GET /healthcheck', () => {
it('should return 200 response with version data', async () => {
await request(app).get('/healthcheck').expect(200);
});
});