extended timeouts

This commit is contained in:
Tony Tam
2015-09-19 09:51:23 -07:00
parent 22654e2180
commit 058f959669
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
#sudo: false
sudo: false
language: node_js
node_js:
- '0.10'

View File

@@ -17,10 +17,10 @@ var elements = [
];
describe('swagger 2.0 spec tests', function () {
this.timeout(10 * 1000);
this.timeout(10 * 3000);
before(function (done) {
this.timeout(25 * 1000);
this.timeout(25 * 3000);
servers.start('/v2/petstore.json', done);
});