Skip to content

Commit

Permalink
Improve test stability
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Mar 20, 2023
1 parent b8773e2 commit d44fba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cli/samples/watch/close-stdin/wrapper.js
Expand Up @@ -14,7 +14,7 @@ process.stdin = new Readable({
});

const outputDir = resolve(__dirname, '_actual');
mkdirSync(outputDir);
mkdirSync(outputDir, {recursive: true});
const outputFile = resolve(outputDir, 'out.js');
const INITIAL_OUTPUT = 'NOT WRITTEN';
writeFileSync(outputFile, INITIAL_OUTPUT);
Expand Down

0 comments on commit d44fba6

Please sign in to comment.