Skip to content

Commit dac51a7

Browse files
committed
fix: add explicit types to fuzz env constants for Biome useExplicitType
1 parent b199c66 commit dac51a7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/fuzz/fuzz.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
import { expect, test } from "@playwright/test";
1111

12-
const FUZZ_DURATION = parseInt(process.env["FUZZ_DURATION"] || "15", 10) * 1000;
12+
const FUZZ_DURATION: number = parseInt(process.env["FUZZ_DURATION"] || "15", 10) * 1000;
1313
const FUZZ_SEED: string = process.env["FUZZ_SEED"] || Math.floor(Math.random() * 1_000_000).toString();
1414
const FUZZ_RATE: string = process.env["FUZZ_RATE"] || "100";
1515
const FUZZ_POINTERS: string = process.env["FUZZ_POINTERS"] || "1";

0 commit comments

Comments
 (0)