From 203affe8241f73e57d8592cb2396d6e8e1db3dfc Mon Sep 17 00:00:00 2001 From: Alexander Lichter Date: Mon, 20 Jun 2022 18:51:02 +0200 Subject: [PATCH] docs: fix async/await --- 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 bfcc9ad876d..582a6dd87d0 100644 --- a/docs/content/2.guide/6.going-further/7.testing.md +++ b/docs/content/2.guide/6.going-further/7.testing.md @@ -20,7 +20,7 @@ In each `describe` block where you are taking advantage of the `@nuxt/test-utils import { describe, test } from 'vitest' import { setup, $fetch } from '@nuxt/test-utils-edge' -describe('My test', () => { +describe('My test', async () => { await setup({ // test context options })