diff options
| -rw-r--r-- | packages/bun-types/bun-test.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/bun-types/bun-test.d.ts b/packages/bun-types/bun-test.d.ts index c3ba00cd5..62d6bef3e 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; |
