Skip to content

Commit

Permalink
Jest types broke our CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ef4 committed Dec 6, 2023
1 parent 9ea9e87 commit c1241a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/macros/tests/babel/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ type CreateModeTests = (transform: Transform, hooks: ModeTestHooks) => void;
function disabledTest(_name: string, _impl: jest.ProvidesCallback | undefined) {}
disabledTest.only = disabledTest;
disabledTest.skip = disabledTest;
disabledTest.todo = disabledTest;
disabledTest.todo = (_name: string): void => {};
disabledTest.concurrent = disabledTest;
disabledTest.each = test.each;
disabledTest.failing = disabledTest;
Expand Down

0 comments on commit c1241a4

Please sign in to comment.