🚧tracks.spec.ts - check if track was added

ref #17
This commit is contained in:
Philipp Dormann 2020-12-05 20:17:42 +01:00
parent 07e03ff04e
commit 15e3d04215
1 changed files with 14 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import axios from 'axios';
describe('GET /api/tracks', () => {
it('basic get should return 200', async () => {
const res = await axios.get('http://localhost:4010/api/tracks', { validateStatus: undefined });
const res = await axios.get('http://localhost:4010/api/tracks');
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
@ -10,7 +10,7 @@ describe('GET /api/tracks', () => {
const res = await axios.post('http://localhost:4010/api/tracks', {
"name": "string",
"distance": 400
}, { validateStatus: undefined });
});
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
@ -29,8 +29,19 @@ describe('POST /api/tracks', () => {
const res = await axios.post('http://localhost:4010/api/tracks', {
"name": "string",
"distance": 400
}, { validateStatus: undefined });
});
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
it('check if track was added', async () => {
const res = await axios.get('http://localhost:4010/api/tracks');
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
let added_track = res.data[res.data.length - 1]
delete added_track.id
expect(added_track).toEqual({
"name": "string",
"distance": 400
})
});
});