File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
- fixes issue when no assert name is provided
4
4
- 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
5
6
6
7
# 1.0.1 (04/20/2019)
7
8
Original file line number Diff line number Diff line change @@ -47,11 +47,15 @@ const { out } = program;
47
47
48
48
process . stdin
49
49
. pipe ( parser ( ( res ) => {
50
- const outputPath = out ? path . resolve ( __dirname , out ) : path . resolve ( process . cwd ( ) , 'tap.html' ) ;
51
-
52
50
// generate the html report
53
51
const output = generate ( res ) ;
54
52
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
+ }
56
60
} ) )
57
61
. pipe ( process . stdout ) ;
You can’t perform that action at this time.
0 commit comments