Skip to content

Commit

Permalink
fix: fixed incorrect assertion in jest-worker unit tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammednumaan committed Jan 17, 2025
1 parent fe89615 commit 31dec0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-worker/src/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ it('works with minimal options', () => {
expect(WorkerPool).toHaveBeenCalledTimes(1);
expect(typeof farm1.methodA).toBe('function');
expect(typeof farm1.methodB).toBe('function');
expect(typeof farm1).toEqual(
expect(farm1).toEqual(
expect.not.objectContaining({
_shouldNotExist: expect.anything,
}),
Expand Down

0 comments on commit 31dec0e

Please sign in to comment.