There was an error while loading. Please reload this page.
1 parent b199c66 commit dac51a7Copy full SHA for dac51a7
1 file changed
tests/fuzz/fuzz.spec.ts
@@ -9,7 +9,7 @@
9
10
import { expect, test } from "@playwright/test";
11
12
-const FUZZ_DURATION = parseInt(process.env["FUZZ_DURATION"] || "15", 10) * 1000;
+const FUZZ_DURATION: number = parseInt(process.env["FUZZ_DURATION"] || "15", 10) * 1000;
13
const FUZZ_SEED: string = process.env["FUZZ_SEED"] || Math.floor(Math.random() * 1_000_000).toString();
14
const FUZZ_RATE: string = process.env["FUZZ_RATE"] || "100";
15
const FUZZ_POINTERS: string = process.env["FUZZ_POINTERS"] || "1";
0 commit comments