selfservice forgotten mails feature/154-selfservice_forgotten #155

Merged
niggl merged 18 commits from feature/154-selfservice_forgotten into dev 2021-03-06 13:22:19 +00:00
Showing only changes of commit 08957d4dc2 - Show all commits

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" });
});
});