Skip to content

Commit

Permalink
Switched to deep equality instead of reference equality.
Browse files Browse the repository at this point in the history
  • Loading branch information
thekevinbrown committed Jan 20, 2025
1 parent a12762e commit da4e470
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ describe('Security', () => {
});

assert(response.body.kind === 'single');
expect(response.body.singleResult.data).toBe({ tags: null });
expect(response.body.singleResult.data).toEqual({ tags: null });
expect(response.http.headers.get('X-Auth-Redirect')).toBe(
`${process.env.AUTH_BASE_URI}/auth/login?redirect_uri=${encodeURIComponent(
process.env.AUTH_BASE_URI + '/'
Expand Down

0 comments on commit da4e470

Please sign in to comment.