We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f144daa commit 2386ff3Copy full SHA for 2386ff3
vitest.config.ts
@@ -82,7 +82,7 @@ function resolveProjects(): string[] {
82
83
const rootConfig = findConfig(rootPath)
84
if (rootConfig) {
85
- projects.push(path.relative(ROOT_DIR, rootConfig))
+ projects.push(rootConfig)
86
}
87
88
const entries = fs.readdirSync(rootPath, { withFileTypes: true })
@@ -94,7 +94,7 @@ function resolveProjects(): string[] {
94
const projectDir = path.join(rootPath, entry.name)
95
const configPath = findConfig(projectDir)
96
if (configPath) {
97
- projects.push(path.relative(ROOT_DIR, configPath))
+ projects.push(configPath)
98
99
100
0 commit comments