我正在尝试使用 jasmine 的beforeAll和afterAll方法,用frisby.js创建一套测试,因为实际上,frisby 不支持这种方法。所以,这就是我想要做的:
var frisby = require('frisby');
describe("setUp and tearDown", function(){
beforeAll(function(){
console.log("test beforeAll");
});
afterAll(function(){
console.log("afterAll");
});
//FRISBY TESTS
}); //end of describe function
如果我将 before/afterAll 方法更改为 before/afterEach,则可以正常工作,但是当我使用 before/afterAll 时,控制台上会出现此错误:
消息:ReferenceError:未定义 beforeAll Stacktrace:ReferenceError:未定义 beforeAll
我的项目中安装了 jasmine 版本 2.3.2,所以,我不知道我需要做什么来集成这个方法。