File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,12 @@ To use formatter just add formatter section in config file
15
15
``` javascript
16
16
module .exports = {
17
17
default: {
18
- format: [' @qavajs/console-formatter' ]
18
+ format: [' @qavajs/console-formatter' ],
19
+ formatOptions: {
20
+ console: {
21
+ showLogs: true // show cucumber logs
22
+ }
23
+ },
19
24
}
20
25
}
21
26
```
Original file line number Diff line number Diff line change @@ -41,3 +41,12 @@ Feature: Parallel
41
41
When I type '$user.username' to 'Username Input'
42
42
And I type '$user.password' to 'Password Input'
43
43
```
44
+
45
+ ### Test Sharding
46
+ qavajs provides ability to shard your tests between different machines. To do so pass ` --shard x/y ` parameter in CLI,
47
+ where x - current shard, y - total number of shards.
48
+
49
+ ```
50
+ npx qavajs run --config config.js --shard 1/2
51
+ npx qavajs run --config config.js --shard 2/2
52
+ ```
You can’t perform that action at this time.
0 commit comments