fix: Fix biome correctness errors

This commit is contained in:
2026-03-23 08:32:30 +05:30
parent 7a164c705c
commit 36c6700437
8 changed files with 24 additions and 40 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ let mockCommandResponses: Record<
let executedCommands: string[] = [];
function setupMockBun$() {
const mockFn = mock((strings: TemplateStringsArray, ...values: any[]) => {
const mockFn = mock((_strings: TemplateStringsArray, ...values: any[]) => {
const parts = values[0] as string[];
const cmd = parts.join(" ");
executedCommands.push(cmd);