Helper function to create spy object for `jest`, same as `jasmine.createSpyObj`
npm install jest-createspyobjHelper function to create spy object for jest, same as jasmine.createSpyObj
``ts
import { createSpyObj } from 'jest-createspyobj';
class Tape {
play() {}
pause() {}
}
const spy1 = createSpyObj('Tape', ['play', 'pause']);
const spy1 = createSpyObj(Tape);
`
`ts``
function createSpyObj(ref: string, methods: string[]): jest.Mocked
function createSpyObj