We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d898cfc commit e93a602Copy full SHA for e93a602
packages/devextreme-cli/testing/nextjs-server.js
@@ -39,11 +39,12 @@ module.exports = class NextJsServer {
39
console.log('-----NEXTJS SERVER-STOP---process.platform->', !!this.proc, process.platform);
40
if(this.proc) {
41
42
- this.proc.kill('SIGTERM');
43
- await new Promise((resolve) => setTimeout(resolve, 1000));
44
- this.proc.kill('SIGKILL');
+ // this.proc.kill('SIGTERM');
+ // await new Promise((resolve) => setTimeout(resolve, 1000));
+ // this.proc.kill('SIGKILL');
45
+
46
+ process.kill(-this.proc.pid, 'SIGKILL');
47
await new Promise((resolve) => setTimeout(resolve, 1000));
- process.kill(-this.proc.pid);
48
}
49
50
if(process.platform === 'win32') {
0 commit comments