Skip to content

Commit 06fec36

Browse files
wip. test checking
1 parent d418b5c commit 06fec36

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/devextreme-cli/testing/nextjs-server.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ module.exports = class NextJsServer {
88

99
async start() {
1010
this.stop();
11-
11+
console.log('----RUN STOP SERVER CMD------>');
1212
({ proc: this.proc } = await runCommand('npm', ['run', 'start'], {
1313
cwd: this.env.appPath,
1414
detached: true
@@ -17,6 +17,7 @@ module.exports = class NextJsServer {
1717

1818
stop() {
1919
if(this.proc) {
20+
console.log('------SIGKILL---->');
2021
this.proc.kill('SIGKILL');
2122
this.proc = null;
2223
}

0 commit comments

Comments
 (0)