[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 minor typos (#5427)

authored by

Reece Dunham and committed by
GitHub
(Apr 2, 2024, 10:49 AM +0200) d8a434a4 ffec1dc6

+2 -2
+2 -2
docs/api/assert.md
··· 1 1 # assert 2 2 3 - Vitest reexports `assert` method from [`chai`](https://www.chaijs.com/api/assert/) for verifying invariants. 3 + Vitest reexports the `assert` method from [`chai`](https://www.chaijs.com/api/assert/) for verifying invariants. 4 4 5 5 ## assert 6 6 ··· 1699 1699 1700 1700 - **Type:** `<T>(modifier: Function, object: T, property: string, message?: string) => void` 1701 1701 1702 - Asserts that a `modifier` dose not increases a numeric `object`'s `property`. 1702 + Asserts that a `modifier` does not increases a numeric `object`'s `property`. 1703 1703 1704 1704 ```ts 1705 1705 import { assert, test } from 'vitest'