我在一个测试用例中提交了一个网络请求,但这有时需要超过2秒(默认超时)。

如何增加单个测试用例的超时时间?


当前回答

从命令行:

mocha -t 100000 test.js

其他回答

如果你在NodeJS中使用,那么你可以在package.json中设置timeout

"test": "mocha --timeout 10000"

然后你可以像这样使用NPM运行:

npm test

如果你想使用es6箭头函数,你可以在你的it定义的末尾添加一个.timeout(ms):

it('should not timeout', (done) => {
    doLongThing().then(() => {
        done();
    });
}).timeout(5000);

至少在Typescript中是这样的。

从命令行:

mocha -t 100000 test.js

您还可以考虑采用不同的方法,用存根或模拟对象替换对网络资源的调用。使用Sinon,您可以将应用程序与网络服务分离,集中精力进行开发。

对于Express上的测试导航:

const request = require('supertest');
const server = require('../bin/www');

describe('navigation', () => {
    it('login page', function(done) {
        this.timeout(4000);
        const timeOut = setTimeout(done, 3500);

        request(server)
            .get('/login')
            .expect(200)
            .then(res => {
                res.text.should.include('Login');
                clearTimeout(timeOut);
                done();
            })
            .catch(err => {
                console.log(this.test.fullTitle(), err);
                clearTimeout(timeOut);
                done(err);
            });
    });
});

本例中测试时间为4000 (4s)。

注意:setTimeout(done, 3500)是次要的,因为在测试时间内调用了than done,但是clearTimeout(timeOut)避免了在所有这些时间内使用than。