ui
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
export default class JSONReporter {
|
||||
constructor ({ stream } = {}) {
|
||||
this.stream = stream || process.stdout
|
||||
}
|
||||
|
||||
log (logObj) {
|
||||
this.stream.write(JSON.stringify(logObj) + '\n')
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user