有没有办法在方法中期待失败的Jasmine匹配器?以下代码显示了我尝试做的事情:
function test() {
expect(true).toBe(false);
};
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(function() {
test();
}).toThrow();
});
});
我希望看到此规范标记为" ok"。有没有办法做到这一点?
答案 0 :(得分:0)
如果您看一下Jasmine tests its own Matchers如何能够按照他们的方法以相同的方式使用单独的实例:一个是测试运行器而另一个是测试运行器。