feat: Implement get notifications API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-23 01:24:56 +01:00
parent 6fdc4bf900
commit 14923d4cd6
3 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
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);
});
});