Mocha beforeEach在一个套件中正在另一个套件中运行

时间:2015-03-09 15:04:15

标签: node.js mocha

我有两个测试套件(我使用的是mocha的TDD UI,它使用suite(),test()而不是describe()it()):

suite('first suite'), function(){
    ....
})


suite('second suite', function(){

    beforeEach(function(done){
        console.log('I SHOULD NOT BE RUN')
        this.timeout(5 * 1000);
        deleteTestAccount(ordering, function(err){
            done(err)
        })
    })

    ... 

}()

运行mocha -g 'first suite仅运行第一个套件中的测试,但运行beforeEach,在控制台上打印I SHOULD NOT BE RUN

如何让beforeEach()仅在其所包含的套件中运行?

注意:我可以通过以下方式解决问题:

beforeEach(function(done){
    this.timeout(5 * 1000);
    if ( this.currentTest.fullTitle().includes('second suite') ) {
        deleteTestAccount(ordering, function(err){
            done(err)
        })
    } else {
        done(null)
    }
})

1 个答案:

答案 0 :(得分:7)

问题是beforeEach不是TDD UI的一部分,而是BDD UI。 TDD UI的相应功能是setup。因此,请尝试将beforeEach替换为setup,一切都应该按预期运行:)。