Skip to content

added hours to result output #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# Change Log

All notable changes to the "@qavajs/console-formatter" will be documented in this file.

Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

:rocket: - new feature

:beetle: - bugfix

:x: - deprecation/removal

:pencil: - chore

:microscope: - experimental

## [1.0.0]
- :beetle: added hours to result output

## 0.8.0
- included retries info to total report

Expand Down
18 changes: 8 additions & 10 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,14 @@ To install formatter run

and add to formatter section in config file

```javascript
module.exports = {
default: {
format: ['@qavajs/console-formatter'],
formatOptions: {
console: {
showLogs: true, // show this.log entries in output. Default - false
showProgress: false // show progress bar. Default - false
}
},
```typescript
export default {
format: ['@qavajs/console-formatter'],
formatOptions: {
console: {
showLogs: true, // show this.log entries in output. Default - false
showProgress: false // show progress bar. Default - false
}
}
}
```
Expand Down
Loading