We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 727a71f commit 82b9a1fCopy full SHA for 82b9a1f
1 file changed
app.e2e.test.js
@@ -5,10 +5,10 @@ import request from 'supertest';
5
const baseURL = process.env.TEST_BASE_URL || 'http://localhost:3000';
6
7
describe('API Tests', () => {
8
- it('should return Hello World from GET /', async () => {
+ it('should return Hello Den Bosch from GET /', async () => {
9
const res = await request(baseURL).get('/');
10
expect(res.statusCode).toBe(200);
11
- expect(res.text).toBe('Hello world!');
+ expect(res.text).toBe('Hello Den Bosch!');
12
});
13
14
it('should respond within reasonable time', async () => {
@@ -26,7 +26,7 @@ describe('API Tests', () => {
26
27
responses.forEach(res => {
28
29
30
31
32
0 commit comments