2023-09-22 20:39:37 +00:00
|
|
|
// app.test.js
|
2023-09-29 01:31:05 +00:00
|
|
|
const request = require('supertest')
|
|
|
|
const app = require('./app')
|
2023-09-22 20:39:37 +00:00
|
|
|
|
|
|
|
describe('GET /', () => {
|
|
|
|
it('should respond with 200 status', async () => {
|
2023-09-29 01:31:05 +00:00
|
|
|
const response = await request(app).get('/')
|
|
|
|
expect(response.statusCode).toBe(200)
|
|
|
|
// expect(response.body.message).toBe('Hello, World!');
|
|
|
|
})
|
|
|
|
})
|
2023-09-22 20:39:37 +00:00
|
|
|
|
|
|
|
describe('GET /asset/frontend.js', () => {
|
|
|
|
it('should respond with 200 status', async () => {
|
2023-09-29 01:31:05 +00:00
|
|
|
const response = await request(app).get('/asset/frontend.js')
|
|
|
|
expect(response.statusCode).toBe(200)
|
|
|
|
// expect(response.body.message).toBe('Hello, World!');
|
|
|
|
})
|
|
|
|
})
|
2023-09-22 20:39:37 +00:00
|
|
|
|
|
|
|
describe('GET /getNextAnimal', () => {
|
|
|
|
it('should respond with 200 status', async () => {
|
2023-09-29 01:31:05 +00:00
|
|
|
const response = await request(app).get('/getNextAnimal')
|
|
|
|
expect(response.statusCode).toBe(200)
|
|
|
|
// expect(response.body.message).toBe('Hello, World!');
|
|
|
|
})
|
|
|
|
})
|
2023-09-22 20:39:37 +00:00
|
|
|
|
|
|
|
// vim:set sts=2 sw=2 et:
|