10 lines
318 B
JavaScript
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);
|
|
});
|
|
});
|