Skip to content

Commit

Permalink
Rebase master into main from 0.201.x deprecations (#4434)
Browse files Browse the repository at this point in the history
* Updates defs to not use deprecated `*` type, and rename `$Partial` to `Partial` (#4432)

* Fix names of dirs: "v.200.x" -> "v0.200.x" (#4435)

* delete overlaps

---------

Co-authored-by: George Zahariev <1222691+gkz@users.noreply.github.com>
  • Loading branch information
Brianzchen and gkz committed Apr 18, 2023
1 parent 18f04e4 commit 6912183
Show file tree
Hide file tree
Showing 901 changed files with 139,317 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/__tests__/runTests-test.js
Expand Up @@ -33,7 +33,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 6912183

Please sign in to comment.