An open API service indexing awesome lists of open source software.

https://github.com/dbspt/scorpion-report

Scorpion-core support pack
https://github.com/dbspt/scorpion-report

Last synced: about 2 months ago
JSON representation

Scorpion-core support pack

Awesome Lists containing this project

README

          

# Scorpion Report
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

Scorpion-core support pack.

### Installation

```console
$ npm install @dbservices/scorpion-report
```

### Example of use:
```typescript
import * as Report from "@dbservices/scorpion-report";

setTimeout(async function () {
await Report.generate({
jsonFile: "reports/cucumber_report.json",
output: "reports/report.html",
});
}, 1000);
```