1
0

11 lines
282 B
TypeScript

import request from 'supertest';
const { app } = require('../src/app');
describe('Server Routes', () => {
it('should respond to GET /', async () => {
const response = await request(app).get('/');
expect(response.status).toBe(200);
});
// Add more tests as needed
});