我试图在它之后达到一个全局变量。 例如:
var date = 0;
it('must set a value', function(){
date = 5;
});
it('must compare', function(){
expect(date).toBe(5);
});
答案 0 :(得分:0)
it
块不应该相互依赖。首先,因为执行是异步的,会导致意外行为。第二,因为单元测试应该易于准备和独立...所以当一个失败时,你知道实际上失败了什么(即你不需要查看其他单元块)
我不确定您尝试使用您的代码实现了什么,但在我看来,您想要的内容类似于以下代码:
describe('MyTestSpec', function () {
var date = 0;
beforeEach(function () {
//Using beforeEach will actually assume that date will be set to 5
//before the execution of your it-block.
date = 5;
});
it('check if date is 5', function () {
expect(date).toBe(5);
});
});