5

Sinon.js 有什么有价值的替代品吗?

谢谢。

4

3 回答 3

1

没有那么先进,但你可以看看Jack

于 2012-07-16T09:26:16.593 回答
1

Testdouble.js

还有一个名为testdouble.js的库。这是一种比 sinon.js 更面向对象的方法。

另外, testdouble 的这篇文章解释了 sinon.js 和 testdouble.js 之间的区别。

例子

var td = require('testdouble');

var fetch = td.function();
td.when(fetch(42)).thenReturn('Jane User');

fetch(42); // -> 'Jane User'
于 2016-11-22T18:33:58.563 回答
0

我刚刚开始了一个名为 candy-wrapper 的新项目,在某些情况下它可能是 Sinon 的替代品: https ://www.npmjs.com/package/candy-wrapper

以下是一些如何使用它的示例,如果有人对如何使它变得更好有任何见解,我会很乐意提供反馈:

var Wrapper = require("candy-wrapper");

// a simple test object
var myDrone = {
    name: "DJI",
    fly: function(direction) {
        return true;
    }
}

new Wrapper(myDrone, "name");
new Wrapper(myDrone, "fly");

myDrone.fly("north");
myDrone.fly("west");

// evaluating previous calls through the 'historyList' and 'Filters'
myDrone.fly.historyList.filterFirst().expectCallArgs("north"); // true
myDrone.fly.historyList.filterSecond().expectCallArgs("east"); // false
myDrone.fly.expectReportAllFailtures(); // throws an error about the "east" expecation failing

// modifying behavior using 'Triggers'
myDrone.fly.triggerOnCallArgs("east").actionReturn(false); // will return 'false' when called with "east"
myDrone.fly("east"); // false
myDrone.fly("west"); // true (the default return value)

// working with properties
myDrone.name.triggerOnSet().actionThrowException(new Error("do not set the name"));
myDrone.name = "Bob"; // throws Error: "do not set the name"
var ret = myDrone.name; // ret = "DJI"
于 2017-03-31T18:43:32.730 回答