summaryrefslogtreecommitdiff
path: root/testing/asserts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'testing/asserts.ts')
-rw-r--r--testing/asserts.ts2
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++) {