test: increase timeouts on CI

This commit is contained in:
Miroslav Bajtoš 2016-06-01 09:26:45 +02:00
parent 05f8774ed6
commit b013e66883
1 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,9 @@ describe('loopback.rest', function() {
MyModel.attachTo(db);
});
if (process.env.CI)
this.timeout(3000);
it('works out-of-the-box', function(done) {
app.model(MyModel);
app.use(loopback.rest());