From 0850a2f2775958f7684fdc8d8e7f84117aee3b7c Mon Sep 17 00:00:00 2001 From: Julien Huang Date: Sun, 16 Jun 2024 16:27:08 +0200 Subject: [PATCH] test(nuxt): normalize paths for windows (#27653) --- packages/nuxt/test/components-transform.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/nuxt/test/components-transform.test.ts b/packages/nuxt/test/components-transform.test.ts index e1a6a8a1e5..76859ef621 100644 --- a/packages/nuxt/test/components-transform.test.ts +++ b/packages/nuxt/test/components-transform.test.ts @@ -2,6 +2,7 @@ import { fileURLToPath } from 'node:url' import { describe, expect, it } from 'vitest' import type { Component, Nuxt } from '@nuxt/schema' import { kebabCase } from 'scule' +import { normalize } from 'pathe' import { createTransformPlugin } from '../src/components/transform' @@ -92,7 +93,7 @@ function createTransformer (components: Component[], mode: 'client' | 'server' | return async (code: string, id: string) => { const result = await (plugin as any).transform!(code, id) - return (typeof result === 'string' ? result : result?.code)?.replaceAll(rootDir, '/') + return (typeof result === 'string' ? result : result?.code)?.replaceAll(normalize(rootDir), '/') } }