假设有一个A.js文件,其中有10个阻止它的块,现在在执行中间时说在6号它需要执行另一个js文件,例如B.js
答案 0 :(得分:0)
我不确定您的意思是什么,但是您可能有几个describe
块,其中有it
个块。
describe('Main file', () => {
describe('Describe A', () => {
it('some it block from A', async () => {
// code here
});
});
describe('Describe B', () => {
it('some it block from B', async () => {
// code here
});
});
});