Skip to content

Commit

Permalink
Updates defs to not use deprecated * type, and rename $Partial to…
Browse files Browse the repository at this point in the history
… `Partial` (#4432)
  • Loading branch information
gkz committed Apr 17, 2023
1 parent 86f8b7e commit 9a968c6
Show file tree
Hide file tree
Showing 895 changed files with 139,649 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/__tests__/runTests-test.js
Expand Up @@ -26,7 +26,7 @@ describe('run-tests (command)', () => {

it('console logs about unused suppression', async () => {
const expectedError = `Unused suppression`;
const calls = ((console.log: any): JestMockFn<*, *>).mock.calls;
const calls = ((console.log: any): JestMockFn<any, any>).mock.calls;
const lastErrorMsg = calls[calls.length - 1][1];
expect(lastErrorMsg).toContain(expectedError);
});
Expand Down

0 comments on commit 9a968c6

Please sign in to comment.