Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/runtime-core/__tests__/helpers/toHandlers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ describe('toHandlers', () => {
mockWarn()

it('should not accept non-objects', () => {
toHandlers((null as unknown) as any)
toHandlers((undefined as unknown) as any)
toHandlers(null as any)
toHandlers(undefined as any)

expect(
'v-on with no argument expects an object value.'
Expand Down