本文整理汇总了TypeScript中chai.spy.object方法的典型用法代码示例。如果您正苦于以下问题:TypeScript spy.object方法的具体用法?TypeScript spy.object怎么用?TypeScript spy.object使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chai.spy
的用法示例。
在下文中一共展示了spy.object方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
ee.on('some other event', spy_again);
// or you can track an object's method
let array = [ 1, 2, 3 ];
chai.spy.on(array, 'push');
// or you can track multiple object's methods
chai.spy.on(array, 'push', 'pop');
array.push(5);
// and you can reset the object calls
// array.push.reset();
// or you can create spy object
let object = chai.spy.object([ 'push', 'pop' ]);
object.push(5);
// or you create spy which returns static value
spiedFn = chai.spy.returns(true);
spiedFn(); // true
let should = chai.should()
, expect = chai.expect;
const spy = chai.spy();
// .spy