Skip to content

Commit 3f9c506

Browse files
authored
Merge branch 'master' into master
2 parents b1bf445 + cdb5b22 commit 3f9c506

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
- fixes issue when no assert name is provided
44
- fixes issue when no test name is provided with TAP comment
5+
- Change behavior when no output file is given to tap-html to restore what is described in README.md
56

67
# 1.0.1 (04/20/2019)
78

bin/index.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,15 @@ const { out } = program;
4747

4848
process.stdin
4949
.pipe(parser((res) => {
50-
const outputPath = out ? path.resolve(__dirname, out) : path.resolve(process.cwd(), 'tap.html');
51-
5250
// generate the html report
5351
const output = generate(res);
5452

55-
fs.writeFileSync(outputPath, output);
53+
// Produce output either in a file or on stdout.
54+
if (out) {
55+
const outputPath = path.resolve(__dirname, out);
56+
fs.writeFileSync(outputPath, output);
57+
} else {
58+
process.stdout.write(output);
59+
}
5660
}))
5761
.pipe(process.stdout);

0 commit comments

Comments
 (0)