diff options
Diffstat (limited to 'testing/asserts.ts')
| -rw-r--r-- | testing/asserts.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/asserts.ts b/testing/asserts.ts index a2583c22a..cbdaf3a94 100644 --- a/testing/asserts.ts +++ b/testing/asserts.ts @@ -183,7 +183,7 @@ export function assertArrayContains( expected: unknown[], msg?: string ): void { - let missing = []; + let missing: unknown[] = []; for (let i = 0; i < expected.length; i++) { let found = false; for (let j = 0; j < actual.length; j++) { |
