我正在codeceptjs
使用shelljs
.
在一项测试中,我正在调用这样的 Go 应用程序:
const shell = require('shelljs')
let execution = shell.exec('./myGoApplication')
execution.kill();
我试图kill
用不同的参数来阻止它,但它不起作用。
有谁知道如何阻止 Go 应用程序运行?
编辑:
此代码也不会停止
execution.kill('SIGINT');
我正在codeceptjs
使用shelljs
.
在一项测试中,我正在调用这样的 Go 应用程序:
const shell = require('shelljs')
let execution = shell.exec('./myGoApplication')
execution.kill();
我试图kill
用不同的参数来阻止它,但它不起作用。
有谁知道如何阻止 Go 应用程序运行?
编辑:
此代码也不会停止
execution.kill('SIGINT');