From b88548717ac0bf8ef717afb8ee2e48224f4d84bb Mon Sep 17 00:00:00 2001 From: Ali Ijaz Sheikh Date: Fri, 3 Feb 2017 17:12:48 -0800 Subject: [PATCH] Increase timeout in system test (#231) --- system-test/test-controller.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/system-test/test-controller.js b/system-test/test-controller.js index 4a0c5e92..e3551ed4 100644 --- a/system-test/test-controller.js +++ b/system-test/test-controller.js @@ -32,12 +32,13 @@ var debug = require('../src/debug.js')(); describe('Controller', function() { + this.timeout(60 * 1000); it('should register successfully', function(done) { var controller = new Controller(debug); var debuggee = new Debuggee({ - project: process.env.GCLOUD_PROJECT, + project: process.env.GCLOUD_PROJECT, uniquifier: 'test-uid-' + Date.now(), description: 'this is a system test' });