From a71a41dc49d6a6c95cb33973c798aa2933859719 Mon Sep 17 00:00:00 2001 From: Kyle Rush Date: Wed, 31 Jan 2024 11:38:34 -0500 Subject: [PATCH] Fix some typos. --- packages/docs/src/routes/docs/integrations/vitest/index.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/docs/src/routes/docs/integrations/vitest/index.mdx b/packages/docs/src/routes/docs/integrations/vitest/index.mdx index d7b9f46cbc7..acf8382ed60 100644 --- a/packages/docs/src/routes/docs/integrations/vitest/index.mdx +++ b/packages/docs/src/routes/docs/integrations/vitest/index.mdx @@ -24,10 +24,10 @@ You can add vitest easily by using the following Qwik starter script: npm run qwik add vitest ``` -After running the command, vitest will be installed and a new component will be added to your project. The component will be added to the `src/components/example` directory as long as a new unit test is named `example.spec.ts`. -If you are looking for an example for a Component with QwikCity checkout [QwikCityMockProvider](/docs/(qwikcity)/api/index.mdx#qwikcitymockprovider) +After running the command, vitest will be installed and a new component will be added to your project. The component will be added to the `src/components/example` directory as long as a new unit test named `example.spec.tsx`. +If you are looking for an example for a Component with QwikCity checkout [QwikCityMockProvider](/docs/(qwikcity)/api/index.mdx#qwikcitymockprovider). -```tsx title="example.spec.ts" +```tsx title="example.spec.tsx" import { createDOM } from '@builder.io/qwik/testing'; import { test, expect } from 'vitest'; import { ExampleTest } from './example';