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;