Skip to content

Commit

Permalink
docs: remove log language warning (#4075)
Browse files Browse the repository at this point in the history
  • Loading branch information
fenghan34 committed Sep 8, 2023
1 parent f8ea716 commit 2fafc00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/index.md
Expand Up @@ -71,7 +71,7 @@ Next, in order to execute the test, add the following section to your `package.j

Finally, run `npm run test`, `yarn test`, or `pnpm test`, depending on your package manager, and Vitest will print this message:

```log
```txt
✓ sum.test.js (1)
✓ adds 1 + 2 to equal 3
Expand Down Expand Up @@ -111,7 +111,7 @@ Even if you do not use Vite yourself, Vitest relies heavily on it for its transf

If you are already using Vite, add `test` property in your Vite config. You'll also need to add a reference to Vitest types using a [triple slash directive](https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-types-) at the top of your config file.

```ts
```ts
/// <reference types="vitest" />
import { defineConfig } from 'vite'

Expand Down

0 comments on commit 2fafc00

Please sign in to comment.