Files
exp-min/tests/server.test.js
2025-06-21 23:09:28 -05:00

10 lines
321 B
JavaScript

import request from 'supertest'
import app from '../src/server'
describe('Express App', () => {
it('should respond with "Application is running!" at the root', async () => {
const res = await request(app).get('/')
expect(res.statusCode).toEqual(200)
expect(res.text).toBe('Application is running!')
})
})