We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a67a45 commit a8e3224Copy full SHA for a8e3224
JetStreamDriver.js
@@ -2026,7 +2026,7 @@ for (const name of WTB_TESTS) {
2026
2027
2028
const benchmarksByName = new Map();
2029
-const benchmarksByGroup = new Map();
+const benchmarksByTag = new Map();
2030
2031
for (const benchmark of BENCHMARKS) {
2032
const name = benchmark.name;
@@ -2038,9 +2038,9 @@ for (const benchmark of BENCHMARKS) {
2038
2039
for (const tag of benchmark.tags) {
2040
if (benchmarksByTag.has(tag))
2041
- benchmarksByTag.get(tag).push(testName);
+ benchmarksByTag.get(tag).push(name);
2042
else
2043
- benchmarksByTag.set(tag, [testName]);
+ benchmarksByTag.set(tag, [name]);
2044
}
2045
2046
0 commit comments