@empiricalrun/test-run 0.10.4 → 0.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/lib/cmd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/lib/cmd.js
CHANGED
|
@@ -79,7 +79,7 @@ async function spawnCmd(command, args, options) {
|
|
|
79
79
|
}
|
|
80
80
|
function setupProcessSignalHandlers(proc) {
|
|
81
81
|
const handleSignal = async (signal) => {
|
|
82
|
-
|
|
82
|
+
logger_1.logger.debug(`\nReceived ${signal}, gracefully shutting down...`);
|
|
83
83
|
if (proc && !proc.killed) {
|
|
84
84
|
// Forward the signal to the child process
|
|
85
85
|
proc.kill(signal);
|