Alpha release 0.4.4 #142

Merged
niggl merged 9 commits from dev into main 2021-02-09 16:47:34 +00:00
Showing only changes of commit 90e1ad7db7 - Show all commits

View File

@ -133,7 +133,6 @@ describe('GET /api/teams/:id/runners after adding', () => {
const res = await axios.get(base + '/api/teams/' + added_team.id + "/runners", axios_config);
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json");
delete added_runner.group.parentGroup;
expect(res.data).toContainEqual(added_runner);
});
});