Skip to content

Commit

Permalink
Add process.version output in some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kentaroi committed Aug 12, 2024
1 parent 5a0c050 commit f5f793e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
1 change: 1 addition & 0 deletions test/integration/watcher-with-rev.js
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit f5f793e

Please sign in to comment.