-
Notifications
You must be signed in to change notification settings - Fork 17
Set reporter programmatically #17
Comments
Custom reporter, e.g. tap-nyan. |
From the readme:
|
@sindresorhus Thanks for the quick response. I read the docs and see the options. I do not see an option for reporters. Does that mean there isn't one? |
The docs only mention piping to custom reporters via the the cli which is why I'm inquiring here. Is there a gulp specific workaround? |
Yeah, you're right. Not that clear. AVA doesn't support third-party reporters directly, but instead comes with a TAP option, enabling you to use any TAP reporter. See the That being said. Would honestly be easier to just spawn the |
Cool, thanks. Yeah, I'll try spawning or hacking the plugin. |
Not tested, but with gulp.task('test', () => execa.shell('ava --tap | tap-nyan', {stdio: 'inherit'})); |
Possible via options?
The text was updated successfully, but these errors were encountered: