Skip to content

Commit

Permalink
tests: make smokehouse output dir with recursive flag (#15261)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark committed Jul 12, 2023
1 parent dd12cf8 commit 6eba650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/test/smokehouse/frontends/smokehouse-bin.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ async function begin() {

if (smokehouseOutputDir && testResultsToOutput) {
fs.rmSync(smokehouseOutputDir, {recursive: true, force: true});
fs.mkdirSync(smokehouseOutputDir);
fs.mkdirSync(smokehouseOutputDir, {recursive: true});

for (const testResult of testResultsToOutput) {
for (let i = 0; i < testResult.runs.length; i++) {
Expand Down

0 comments on commit 6eba650

Please sign in to comment.