fix linting
Some checks failed
Angular Build / build (push) Has been cancelled

This commit is contained in:
2026-03-20 21:04:46 +01:00
parent 893a13a8f2
commit 8bfbe7b1cc

View File

@@ -1,7 +1,8 @@
import 'vitest';
declare module 'vitest' {
interface Assertion<T = unknown> {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
interface Assertion<T = any> {
toBeTrue(): T;
toBeFalse(): T;
}