当前位置:  开发笔记 > 编程语言 > 正文

无法为茉莉花设置超时

如何解决《无法为茉莉花设置超时》经验,为你挑选了1个好方法。

我已经尝试了这个答案中的所有解决方案,但它们都不适合我.

我正在使用jasmine v2.3.2jasmine-core v2.3.4

当我做这个测试时:

jasmine.DEFAULT_TIMEOUT_INTERVAL= 999999;

describe('tests content controller', function(){
//...

    fit('/content should return 200',function(done){
        request(app)
        .get('/content?type=script')
        .set('Authorization', "bearer " + requestor.token)
        .set('Accept', 'application/json')
        .expect(200)
        .end(function (err, res) {
            if (err) done.fail(err);
            expect(res.statusCode).toBe(200);
            console.log('got here');
            console.log(jasmine.DEFAULT_TIMEOUT_INTERVAL); //prints 30000
            done();
        })
    },999999);

我在控制台上看到请求只花了3000毫秒.我甚至看到了我的got here日志.

显示超时的日志打印出来,30000而不是999999像我期望的那样.

我也通过以下消息对此测试失败:

Message:
    Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
  Stack:
    Error: Timeout - Async callback was not invoked within timeout specified by jasmine.DEFAULT_TIMEOUT_INTERVAL.
        at Timer.listOnTimeout [as ontimeout] (timers.js:110:15)
1 spec, 1 failure
Finished in 33.069 seconds

有一些初始设置导致大部分~30秒延迟.应用程序必须连接到多个数据库并运行该beforeAll功能describe.

我怎样才能防止茉莉花这样的超时?



1> 小智..:

尝试设置jasmine.DEFAULT_TIMEOUT_INTERVALa beforeAll,因为为每个it块重置了超时间隔:

describe("testing timeout", function() {
    beforeAll(function() {
        jasmine.DEFAULT_TIMEOUT_INTERVAL = 999999;
    });

    fit('should have custom timeout', function(){
        console.log(jasmine.DEFAULT_TIMEOUT_INTERVAL); //prints 999999
    });
})

另外,请记住setTimeout使用32位整数来存储幕后延迟,因此超过此值的整数值将导致溢出.看这篇文章: 无限茉莉花超时

推荐阅读
135369一生真爱_890
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有