Skip to content

Commit

Permalink
docs: adding readme with usage instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Cleverson Sampaio committed Jul 25, 2022
1 parent 33ce5a4 commit ff4a046
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# 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);
```

0 comments on commit ff4a046

Please sign in to comment.