Files
automatisch/packages/backend/src/controllers/api/v1/automatisch/notifications.test.js
2024-02-23 01:24:56 +01:00

10 lines
318 B
JavaScript

import { describe, it } from 'vitest';
import request from 'supertest';
import app from '../../../../app.js';
describe('GET /api/v1/automatisch/notifications', () => {
it('should return Automatisch notifications', async () => {
await request(app).get('/api/v1/automatisch/notifications').expect(200);
});
});