You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -34609,22 +34622,22 @@ function checkIfK6ASCIIArt(data) {
34609
34622
return true;
34610
34623
}
34611
34624
}
34612
-
function parseK6Output(data, testResultUrlsMap, totalTestRuns) {
34625
+
function parseK6Output(data, testRunUrlsMap, totalTestRuns) {
34613
34626
/*
34614
34627
* This function is responsible for parsing the output of the k6 command.
34615
34628
* It filters out the progress lines and logs the rest of the output.
34616
34629
* It also extracts the test run URLs from the output.
34617
34630
*
34618
34631
* @param {Buffer} data - The k6 command output data
34619
-
* @param {TestResultUrlsMap | null} testResultUrlsMap - The map containing the script path and output URL. If null, the function will not extract test run URLs.
34632
+
* @param {TestRunUrlsMap | null} testRunUrlsMap - The map containing the script path and output URL. If null, the function will not extract test run URLs.
34620
34633
* @param {number} totalTestRuns - The total number of test runs. This is used to determine when all test run URLs have been extracted.
* This function is responsible for parsing the output of the k6 command.
116
116
* It filters out the progress lines and logs the rest of the output.
117
117
* It also extracts the test run URLs from the output.
118
118
*
119
119
* @param {Buffer} data - The k6 command output data
120
-
* @param {TestResultUrlsMap | null} testResultUrlsMap - The map containing the script path and output URL. If null, the function will not extract test run URLs.
120
+
* @param {TestRunUrlsMap | null} testRunUrlsMap - The map containing the script path and output URL. If null, the function will not extract test run URLs.
121
121
* @param {number} totalTestRuns - The total number of test runs. This is used to determine when all test run URLs have been extracted.
122
122
*
123
123
* @returns {void}
@@ -127,8 +127,8 @@ export function parseK6Output(data: Buffer, testResultUrlsMap: TestResultUrlsMap
0 commit comments