Skip to content

Commit 78ee948

Browse files
Merge pull request #23 from qavajs/fix-duration
added hours to result output
2 parents b299c02 + 5f3d5da commit 78ee948

File tree

6 files changed

+1007
-988
lines changed

6 files changed

+1007
-988
lines changed

CHANGELOG.MD

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
# Change Log
2+
3+
All notable changes to the "@qavajs/console-formatter" will be documented in this file.
4+
5+
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
6+
7+
:rocket: - new feature
8+
9+
:beetle: - bugfix
10+
11+
:x: - deprecation/removal
12+
13+
:pencil: - chore
14+
15+
:microscope: - experimental
16+
17+
## [1.0.0]
18+
- :beetle: added hours to result output
19+
120
## 0.8.0
221
- included retries info to total report
322

README.MD

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,14 @@ To install formatter run
99

1010
and add to formatter section in config file
1111

12-
```javascript
13-
module.exports = {
14-
default: {
15-
format: ['@qavajs/console-formatter'],
16-
formatOptions: {
17-
console: {
18-
showLogs: true, // show this.log entries in output. Default - false
19-
showProgress: false // show progress bar. Default - false
20-
}
21-
},
12+
```typescript
13+
export default {
14+
format: ['@qavajs/console-formatter'],
15+
formatOptions: {
16+
console: {
17+
showLogs: true, // show this.log entries in output. Default - false
18+
showProgress: false // show progress bar. Default - false
19+
}
2220
}
2321
}
2422
```

0 commit comments

Comments
 (0)