Updated to new responsetype

ref #154
This commit is contained in:
Nicolai Ort 2021-03-06 14:02:58 +01:00
parent 1d762f5662
commit 08957d4dc2
1 changed files with 1 additions and 1 deletions

View File

@ -49,6 +49,6 @@ describe('get valid org w/teams', () => {
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json");
expect(res.data.name).toEqual(added_org.name);
expect(res.data.teams[0]).toEqual({ name: added_team.name, id: added_team.id });
expect(res.data.teams[0]).toEqual({ name: added_team.name, id: added_team.id, responseType: "SELFSERVICETEAM" });
});
});