mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
test(schema): normalize snapshot paths for windows (#27654)
This commit is contained in:
parent
7dd15186e1
commit
5c09894f85
@ -1,6 +1,7 @@
|
|||||||
import { describe, expect, it } from 'vitest'
|
import { describe, expect, it } from 'vitest'
|
||||||
import { applyDefaults } from 'untyped'
|
import { applyDefaults } from 'untyped'
|
||||||
|
|
||||||
|
import { normalize } from 'pathe'
|
||||||
import { NuxtConfigSchema } from '../src'
|
import { NuxtConfigSchema } from '../src'
|
||||||
import type { NuxtOptions } from '../src'
|
import type { NuxtOptions } from '../src'
|
||||||
|
|
||||||
@ -75,7 +76,9 @@ describe('nuxt folder structure', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
function getDirs (options: NuxtOptions) {
|
function getDirs (options: NuxtOptions) {
|
||||||
const stripRoot = (dir: string) => dir.replace(process.cwd(), '<cwd>')
|
const stripRoot = (dir: string) => {
|
||||||
|
return normalize(dir).replace(normalize(process.cwd()), '<cwd>')
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
rootDir: stripRoot(options.rootDir),
|
rootDir: stripRoot(options.rootDir),
|
||||||
serverDir: stripRoot(options.serverDir),
|
serverDir: stripRoot(options.serverDir),
|
||||||
|
Loading…
Reference in New Issue
Block a user