From 5870e8d6e6a392462d83a2d270488fdde7dca1a5 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 31 Jul 2023 23:56:21 +0100 Subject: [PATCH] test: work around mocking issue --- tests/nuxt/content-rich.test.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/nuxt/content-rich.test.ts b/tests/nuxt/content-rich.test.ts index d21bc30e..3a65ad65 100644 --- a/tests/nuxt/content-rich.test.ts +++ b/tests/nuxt/content-rich.test.ts @@ -1,4 +1,5 @@ -import { describe, expect, it, vi } from 'vitest' +// TODO: fix shadowing of `vi` import +import { vi as _vi, describe, expect, it } from 'vitest' import { renderToString } from 'vue/server-renderer' import { format } from 'prettier' import type { mastodon } from 'masto' @@ -270,7 +271,7 @@ async function render(content: string, options?: ContentParseOptions) { } // mocks -vi.mock('vue-router', async () => { +_vi.mock('vue-router', async () => { const { defineComponent, h } = await import('vue') return { RouterLink: defineComponent((attrs) => { @@ -279,7 +280,7 @@ vi.mock('vue-router', async () => { } }) -vi.mock('shiki-es', async (importOriginal) => { +_vi.mock('shiki-es', async (importOriginal) => { const mod = await importOriginal() return { ...(mod as any),