Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 17 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ Single file HTML formatter for cucumber framework
### Installation
To install formatter run

`npm install @qavajs/html-formatter`
```
npm install @qavajs/html-formatter
```

and add to formatter section in config file

```javascript
module.exports = {
default: {
format: [
['@qavajs/html-formatter', 'report.html']
]
},
```typescript
export default {
format: [
['@qavajs/html-formatter', 'report.html']
],
formatOptions: {
htmlConfig: {
metadata: {
Expand All @@ -35,9 +35,15 @@ Kudos to https://github.com/epam/UUI for providing components

## Development

`npm install`
```
npm install
```

`npm run build`
```
npm run build
```

`npm start`
```
npm start
```

Loading