我指的是测试断言库:http://chaijs.com/api/bdd/#false
您可以编写如下语言链断言:
expect(false).to.be.false;
expect()显然是一个全局函数," to.be"看起来像两个属性,但最后一部分" false"工作。我期待它必须是一个函数调用:
expect(false).to.be.false();
这是2015 ES语法吗?我无法在https://github.com/lukehoban/es6features
中找到对它的引用Stack Overflow表示不可能:How to implement optional parentheses during function call? (function overloading)
有人能说明这样的事情是如何实现的吗?
源代码:https://github.com/chaijs/chai/blob/master/lib/chai/core/assertions.js#L281
答案 0 :(得分:11)
您可以使用Object.defineProperty
执行此操作(以及许多其他内容)。这是一个基本的例子:
// our "constructor" takes some value we want to test
var Test = function (value) {
// create our object
var testObj = {};
// give it a property called "false"
Object.defineProperty(testObj, 'false', {
// the "get" function decides what is returned
// when the `false` property is retrieved
get: function () {
return !value;
}
});
// return our object
return testObj;
};
var f1 = Test(false);
console.log(f1.false); // true
var f2 = Test("other");
console.log(f2.false); // false
您可以使用Object.defineProperty
做更多事情。您应该查看the MDN docs for Object.defineProperty
了解详细信息。