build(deps-dev): handle @types/jest bump

This commit is contained in:
Evan You
2020-12-02 17:05:30 -05:00
parent 4b610b3dcf
commit 3523f743e5
4 changed files with 12 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ describe('renderer: component', () => {
// #2170
test('instance.$el should be exposed to watch options', async () => {
function returnThis(this: any) {
function returnThis(this: any, _arg: any) {
return this
}
const propWatchSpy = jest.fn(returnThis)

View File

@@ -515,7 +515,7 @@ describe('vnode', () => {
// slot content (called during the block node creation) to be missed
test('element block should track normalized slot children', () => {
const hoist = createVNode('div')
let vnode1
let vnode1: any
const vnode = (openBlock(),
createBlock('div', null, {
default: () => {