updates several dependencies

This commit is contained in:
Alex Corey
2021-07-20 12:06:45 -04:00
parent e77d297a28
commit 3def23883e
660 changed files with 30212 additions and 5437 deletions

View File

@@ -22,9 +22,10 @@ describe('TeamsAPI', () => {
await TeamsAPI.associateRole(teamId, roleId);
expect(mockHttp.post).toHaveBeenCalledTimes(1);
expect(
mockHttp.post.mock.calls[0]
).toContainEqual(`/api/v2/teams/${teamId}/roles/`, { id: roleId });
expect(mockHttp.post.mock.calls[0]).toContainEqual(
`/api/v2/teams/${teamId}/roles/`,
{ id: roleId }
);
});
test('read teams calls post with expected params', async () => {