vi.toBeCallableWith
from
Vitestで型のtest
docs
その関数に対しこの引数が呼べるかを検査
code:ts
type HasParam = (s: string) => void
expectTypeOf<HasParam>().toBeCallableWith('some string')
ここ
で使った