Skip to content

Commit 5f8d674

Browse files
authored
Removed unused type param. (#58)
Fixes `npm run test:chrome`.
1 parent 1ce291f commit 5f8d674

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

resources/shared/params.mjs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ export class Params {
3535
measurePrepare = false;
3636
// External config url to override internal tests.
3737
config = "";
38-
// Extra parameter for selecting workload config
39-
type = ""
4038

4139
constructor(searchParams = undefined) {
4240
if (searchParams)
@@ -70,7 +68,6 @@ export class Params {
7068
this.layoutMode = this._parseEnumParam(searchParams, "layoutMode", LAYOUT_MODES);
7169
this.measurePrepare = this._parseBooleanParam(searchParams, "measurePrepare");
7270
this.config = this._parseConfig(searchParams);
73-
this.type = this._parseBooleanParam(searchParams, "type");
7471

7572
const unused = Array.from(searchParams.keys());
7673
if (unused.length > 0)

0 commit comments

Comments
 (0)