Proteactor-茉莉花-如何在另一个js中执行一个js文件

时间:2019-06-18 14:40:54

标签: jasmine protractor

假设有一个A.js文件,其中有10个阻止它的块,现在在执行中间时说在6号它需要执行另一个js文件,例如B.js

1 个答案:

答案 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
        });
    });
});