如何使用带有ava的sinon.stub?

时间:2017-08-21 09:39:42

标签: testing sinon ava

有关Sinonava如何使用的任何建议吗? 当我运行ava时,stub.called始终为false

target.js

const foo = () => { bar() }
const bar = () => { }

module.exports = { foo, bar }

target.test.js

import test from 'ava';
import sinon from 'sinon';
import * as target from './target';

test('foo', t=>{
    const stub = sinon.stub(target, 'bar')    
    target.foo();
    t.true(stub.called)
})

0 个答案:

没有答案