Protractor ,Jasmine timeout issue

后端 未结 6 2227
灰色年华
灰色年华 2021-02-10 02:44

I\'m doing e2e-testing with Protractor and Jasmine. Our application is in Angular.

I have written given getPageTimeout: 500000, allScriptsTimeout: 600

6条回答
  •  温柔的废话
    2021-02-10 03:09

    Try this:

    describe('Something', function()
    {
    
      it('should do something', function() {
      },500000);
    
    },500000);
    

提交回复
热议问题