Merge alpha 0.0.5 to master #54

Merged
niggl merged 292 commits from dev into main 2020-12-23 17:05:35 +00:00
Showing only changes of commit 431fd608a6 - Show all commits

View File

@ -12,3 +12,11 @@ describe('GET /', () => {
expect(res.status).toEqual(404);
});
});
describe('GET /api/teams', () => {
it('is http 200 && is json', async () => {
const res = await axios.get('http://localhost:4010/api/teams', { validateStatus: undefined });
console.log(res.headers);
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
});