[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs: Fix variable typo in `expect.md` (#8452)

authored by

Gabriel and committed by
GitHub
(Aug 19, 2025, 11:01 AM +0300) adda7b9d 3fb3e803

+1 -1
+1 -1
docs/api/expect.md
··· 528 528 529 529 - Keys with `undefined` properties are checked. e.g. `{a: undefined, b: 2}` does not match `{b: 2}` when using `.toStrictEqual`. 530 530 - Array sparseness is checked. e.g. `[, 1]` does not match `[undefined, 1]` when using `.toStrictEqual`. 531 - - Object types are checked to be equal. e.g. A class instance with fields `a` and` b` will not equal a literal object with fields `a` and `b`. 531 + - Object types are checked to be equal. e.g. A class instance with fields `a` and `b` will not equal a literal object with fields `a` and `b`. 532 532 533 533 ```ts 534 534 import { expect, test } from 'vitest'