摩卡钩之类before(), after(), beforeEach(), afterEach()
的不起作用。该only
方法也不起作用。没有一个beforeEach
被调用。我得到一个错误has no method 'only'
。下面是代码。
describe('Array', function(){
beforeEach(function(){
console.log('before every test')
})
describe.only('#indexOf()', function(){
beforeEach(function(){
console.log('before every test')
})
it.only('should return -1 unless present', function(){
assert.equal(1,2)
})
it('should return the index when present', function(){
assert.equal(1,2);
})
})
})
beforeEach(function(){
console.log('before every test')
})