bea80f8b54
^KT-56488 fixed
34 lines
1.4 KiB
JavaScript
34 lines
1.4 KiB
JavaScript
/*
|
|
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const initDebug = function (injector) {
|
|
configureTimeouts(injector)
|
|
};
|
|
|
|
function configureTimeouts(injector) {
|
|
const webServer = injector.get('webServer');
|
|
if (webServer) {
|
|
// IDE posts http '/run' request to trigger tests (see intellijRunner.js).
|
|
// If a request executes more than `httpServer.timeout`, it will be timed out.
|
|
// Disable timeout, as by default httpServer.timeout=120 seconds, not enough for suspended execution.
|
|
webServer.timeout = 0
|
|
}
|
|
const socketServer = injector.get('socketServer');
|
|
if (socketServer && typeof socketServer.set === 'function') {
|
|
// Disable socket.io heartbeat (ping) to avoid browser disconnecting when debugging tests,
|
|
// because no ping requests are sent when test execution is suspended on a breakpoint.
|
|
// Default values are not enough for suspended execution:
|
|
// 'heartbeat timeout' (pingTimeout) = 60000 ms
|
|
// 'heartbeat interval' (pingInterval) = 25000 ms
|
|
socketServer.set('heartbeat timeout', 24 * 60 * 60 * 1000);
|
|
socketServer.set('heartbeat interval', 24 * 60 * 60 * 1000)
|
|
}
|
|
}
|
|
|
|
initDebug.$inject = ['injector'];
|
|
|
|
module.exports = initDebug; |