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 22530af commit c93f45aCopy full SHA for c93f45a
packages/devextreme-cli/testing/nextjs-server.js
@@ -20,6 +20,8 @@ module.exports = class NextJsServer {
20
async stop() {
21
if(this.proc) {
22
console.log('-----NEXTJS SERVER-STOP---->');
23
+ this.proc.kill('SIGTERM');
24
+ await new Promise((resolve) => setTimeout(resolve, 1000));
25
this.proc.kill('SIGKILL');
26
27
if(process.platform !== 'win32') {
0 commit comments