From 8b6bb92d9fbf6404d8cdd54b424c4f3233f06d0f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A0=81=E5=86=9C=E5=B0=8F=E4=BD=99?= Date: Sun, 17 Jul 2022 22:17:52 +0800 Subject: [PATCH] docs(testing): add missing import (#5956) --- docs/content/2.guide/6.going-further/7.testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/2.guide/6.going-further/7.testing.md b/docs/content/2.guide/6.going-further/7.testing.md index bdca06da0f..b8e51260c4 100644 --- a/docs/content/2.guide/6.going-further/7.testing.md +++ b/docs/content/2.guide/6.going-further/7.testing.md @@ -164,7 +164,7 @@ We can create a test file and use the `rootDir` to test the fixture. ```ts // basic.test.js -import { describe, it } from 'vitest' +import { describe, it, expect } from 'vitest' import { fileURLToPath } from 'node:url' import { setup, $fetch } from '@nuxt/test-utils-edge'