Skip to content

Commit

Permalink
Update unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew-polk committed Mar 5, 2024
1 parent 87a1ea6 commit e0c0cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection/LibraryQueryHooksFast.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ it("builds proper parse query for simplest filter", () => {
);
const resultString = JSON.stringify(result);
expect(resultString).toBe(
'{"count":1,"limit":0,"where":{"inCirculation":{"$in":[true,null]},"draft":{"$in":[false,null]},"baseUrl":{"$exists":true}},"order":"-createdAt"}'
'{"count":1,"limit":0,"where":{"inCirculation":true,"draft":false,"baseUrl":{"$exists":true}},"order":"-createdAt"}'
);
});

Expand Down

0 comments on commit e0c0cf8

Please sign in to comment.