0.13.0 • Published 4 years ago
@secbox/reporter v0.13.0
@secbox/reporter
Provide an abstraction for generating test results as part of the particular test frameworks.
Setup
npm i -s @secbox/reporterUsage
The package provides only one implementation of the Reporter that lets to get results to stdout, i.e. StdReporter:
import { Reporter, StdReporter } from '@secboox/reporter';
const reporter: Reporter = new StdReporter();You just need to call the report method to send findings to stdout:
await reporter.report(scan);
License
Copyright © 2022 NeuraLegion.
This project is licensed under the MIT License - see the LICENSE file for details.