File tree Expand file tree Collapse file tree 2 files changed +7
-8
lines changed
src/main/java/com/ruddell/kite Expand file tree Collapse file tree 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 36
36
"meetingDuration" : 5 ,
37
37
"getStats" : {
38
38
"enabled" : true ,
39
- "statsCollectionTime" : 5000 ,
39
+ "statsCollectionTime" : 10000 ,
40
40
"statsCollectionInterval" : 250 ,
41
- "peerConnections" : [" window.component.state.peers[0]" ],
41
+ "peerConnections" : [" [... window.component.state.peers.values()] [0]" ],
42
42
"selectedStats" : [" inbound-rtp" , " outbound-rtp" , " candidate-pair" ]
43
43
},
44
44
"getCharts" : {
45
45
"enabled" : true ,
46
46
"pathToGenerateChartsFile" : " /generateCharts-min.js" ,
47
47
"pathToChartBundleMin" : " /chart.bundle.min.js" ,
48
- "chartsStatsInterval" : 7000 ,
49
- "peerConnections" : [" window.component.state.peers[0]" ],
48
+ "chartsStatsInterval" : 500 ,
49
+ "peerConnections" : [" [... window.component.state.peers.values()] [0]" ],
50
50
"config" : {
51
51
"width" : 500 ,
52
52
"height" : 500 ,
Original file line number Diff line number Diff line change @@ -60,10 +60,9 @@ protected void populateTestSteps(TestRunner runner) {
60
60
runner .addStep (new CustomScreenshotStep (runner , isBroadcaster ));
61
61
}
62
62
63
- // // disabling, we wait for the Charts step as well
64
- // if (this.meetingDuration > 0) {
65
- // runner.addStep(new StayInMeetingStep(runner, meetingDuration));
66
- // }
63
+ if (this .meetingDuration > 0 ) {
64
+ runner .addStep (new StayInMeetingStep (runner , meetingDuration ));
65
+ }
67
66
68
67
if (this .allureCharts ) {
69
68
runner .addStep (new StopGetStatsStep (runner ));
You can’t perform that action at this time.
0 commit comments