我有一个内部有oauth_consumer_secret
和beforeEach
的循环。每当我运行时,我都可以看到it
和beforeEach
函数在循环中持续存在。我该如何删除它们?
afterEach
我上了控制台:
describe('test', () => {
['1', '2', '3'].forEach(each => {
beforeEach(() => {
console.log(`before ${each}`)
})
it('test 1', () => {
console.log(`test1 ${each}`)
})
it('test 2', () => {
console.log(`test1 ${each}`)
})
})