From f5f793e3295a8144b36cbb9c2d32d2f26b703b32 Mon Sep 17 00:00:00 2001 From: Kentaro Imai Date: Tue, 13 Aug 2024 08:10:19 +0900 Subject: [PATCH] Add process.version output in some tests --- test/integration/watcher-with-rev-dependency-file-update.js | 1 + test/integration/watcher-with-rev.js | 1 + 2 files changed, 2 insertions(+) diff --git a/test/integration/watcher-with-rev-dependency-file-update.js b/test/integration/watcher-with-rev-dependency-file-update.js index c9f2058..0ee6fb4 100644 --- a/test/integration/watcher-with-rev-dependency-file-update.js +++ b/test/integration/watcher-with-rev-dependency-file-update.js @@ -39,6 +39,7 @@ test.after.always("cleanup child process", t => { }); test.before(async t => { + console.debug(`process.version: ${ process.version }`); let sem = new Semaphore(1); await sem.wait(); dir = createProject("watcher-dependency-file-update"); diff --git a/test/integration/watcher-with-rev.js b/test/integration/watcher-with-rev.js index 16baf7c..fdfa12f 100644 --- a/test/integration/watcher-with-rev.js +++ b/test/integration/watcher-with-rev.js @@ -36,6 +36,7 @@ test.after.always("cleanup child process", t => { }); test.before(async t => { + console.debug(`process.version: ${ process.version }`); let sem = new Semaphore(1); await sem.wait(); dir = createProject("watcher-with-rev");