Skip to content

Commit

Permalink
Fix tests on Node 18
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Oct 31, 2022
1 parent 8c07c64 commit dceb628
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/cli/samples/watch/clearScreen/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');
1 change: 1 addition & 0 deletions test/cli/samples/watch/no-clearScreen-command/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');
1 change: 1 addition & 0 deletions test/cli/samples/watch/no-clearScreen/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');
1 change: 1 addition & 0 deletions test/cli/samples/watch/no-watch-by-default/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');
1 change: 1 addition & 0 deletions test/cli/samples/watch/watch-event-hooks-error/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');
1 change: 1 addition & 0 deletions test/cli/samples/watch/watch-event-hooks/wrapper.js
Expand Up @@ -2,4 +2,5 @@

process.stdout.isTTY = true;
process.stderr.isTTY = true;
process.stderr.hasColors = () => true;
require('../../../../../dist/bin/rollup');

0 comments on commit dceb628

Please sign in to comment.