作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
Jasmin 附带许多函数来检查验证规范和测试的预期值。
还有没有
getJasmineRequireObj().toContain = function() { ... };
有点像
getJasmineRequireObj().toNotContain = function() { ... };
?
If not, how to add an extension or plugin to deliver this feature also to our community of developers?
最佳答案
根据文档,您可以使用not
:
getJasmineRequireObj().not.toContain
这个例子来自here :
describe("The 'toBe' matcher compares with ===", function() {
Matchers
Each matcher implements a boolean comparison between the actual value and the expected value. It is responsible for reporting to Jasmine if the expectation is true or false. Jasmine will then pass or fail the spec.
it("and has a positive case", function() {
expect(true).toBe(true);
});
Any matcher can evaluate to a negative assertion by chaining the call to
expect
with anot
before calling the matcher.
it("and can have a negative case", function() {
expect(false).not.toBe(true);
});
});
关于javascript - 是否有类似 jasmine `toNotContain` 的测试验收标准?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37483566/
在 sinon 时钟的帮助下,我已经成功地在 ember 中编写了单元级测试,但验收测试似乎总是一个问题。 例如,在我的 route ,我打算在做某事之前等待 5 秒 export default E
我是一名优秀的程序员,十分优秀!