mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-21 21:25:11 +00:00
test(nuxt): normalize paths for windows (#27653)
This commit is contained in:
parent
5c09894f85
commit
0850a2f277
@ -2,6 +2,7 @@ import { fileURLToPath } from 'node:url'
|
|||||||
import { describe, expect, it } from 'vitest'
|
import { describe, expect, it } from 'vitest'
|
||||||
import type { Component, Nuxt } from '@nuxt/schema'
|
import type { Component, Nuxt } from '@nuxt/schema'
|
||||||
import { kebabCase } from 'scule'
|
import { kebabCase } from 'scule'
|
||||||
|
import { normalize } from 'pathe'
|
||||||
|
|
||||||
import { createTransformPlugin } from '../src/components/transform'
|
import { createTransformPlugin } from '../src/components/transform'
|
||||||
|
|
||||||
@ -92,7 +93,7 @@ function createTransformer (components: Component[], mode: 'client' | 'server' |
|
|||||||
|
|
||||||
return async (code: string, id: string) => {
|
return async (code: string, id: string) => {
|
||||||
const result = await (plugin as any).transform!(code, id)
|
const result = await (plugin as any).transform!(code, id)
|
||||||
return (typeof result === 'string' ? result : result?.code)?.replaceAll(rootDir, '<repo>/')
|
return (typeof result === 'string' ? result : result?.code)?.replaceAll(normalize(rootDir), '<repo>/')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user