From 917cbc8d5d0ea9446db66910be46b7fff4697304 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Fri, 2 Dec 2022 02:30:35 -0800 Subject: [PATCH] incorrect name for matcher --- packages/bun-types/bun-test.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bun-types/bun-test.d.ts b/packages/bun-types/bun-test.d.ts index c3ba00cd5f..62d6bef3e6 100644 --- a/packages/bun-types/bun-test.d.ts +++ b/packages/bun-types/bun-test.d.ts @@ -37,7 +37,7 @@ declare module "bun:test" { toBe(value: any): void; toContain(value: any): void; toEqual(value: any): void; - toBeLength(value: number): void; + toHaveLength(value: number): void; toHaveProperty(key: string, value?: any): void; toBeTruthy(): void; toBeFalsy(): void;