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 71e5be2ba4 - Show all commits

View File

@ -44,4 +44,11 @@ describe('adding org', () => {
expect(res3.status).toEqual(404);
expect(res3.headers['content-type']).toContain("application/json")
});
});
});
// ---------------
describe('adding + deletion (non-existant)', () => {
it('delete', async () => {
const res2 = await axios.delete(base + '/api/teams/0', { validateStatus: undefined });
expect(res2.status).toEqual(204);
});
});