Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
psteinroe committed Feb 14, 2024
1 parent ecbcbd3 commit ff3903a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/postgrest-core/__tests__/update-fetcher.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ describe('update', () => {
username: `${testRunPrefix}-username-2`,
});
expect(updatedContact).toEqual({
normalizedData: { username: 'postgrest-fetcher-insert-94-username-2' },
normalizedData: {
id: expect.anything(),
username: 'postgrest-fetcher-insert-94-username-2',
},
});
const { data } = await client
.from('contact')
Expand Down

0 comments on commit ff3903a

Please sign in to comment.