fix(ci): align stale test expectations

This commit is contained in:
Peter Steinberger
2026-04-06 16:47:09 +01:00
parent 87b2a6a16a
commit f2a710ce63
7 changed files with 12 additions and 70 deletions

View File

@@ -16,9 +16,11 @@ function createLogger(): HookRunnerLogger & {
warn: ReturnType<typeof vi.fn>;
error: ReturnType<typeof vi.fn>;
} {
const warn = vi.fn<(message: string) => void>();
const error = vi.fn<(message: string) => void>();
return {
warn: vi.fn(),
error: vi.fn(),
warn,
error,
};
}