Skip to content

Commit

Permalink
fix: ignore importer when resolving Vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va committed Sep 9, 2024
1 parent 0223bb7 commit cd9ab99
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 22 deletions.
21 changes: 3 additions & 18 deletions packages/vitest/src/node/core.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { existsSync, promises as fs } from 'node:fs'
import type { Writable } from 'node:stream'
import type { ViteDevServer } from 'vite'
import { dirname, join, normalize, relative, resolve } from 'pathe'
import { dirname, join, normalize, relative } from 'pathe'
import mm from 'micromatch'
import { ViteNodeRunner } from 'vite-node/client'
import { SnapshotManager } from '@vitest/snapshot/manager'
Expand All @@ -12,10 +12,10 @@ import { version } from '../../package.json' with { type: 'json' }
import { getTasks, hasFailed, noop, slash, toArray, wildcardPatternToRegExp } from '../utils'
import { getCoverageProvider } from '../integrations/coverage'
import { workspacesFiles as workspaceFiles } from '../constants'
import { rootDir } from '../paths'
import { WebSocketReporter } from '../api/setup'
import type { SerializedCoverageConfig } from '../runtime/config'
import type { ArgumentsType, OnServerRestartHandler, ProvidedContext, UserConsoleLog } from '../types/general'
import { distDir } from '../paths'
import type { ProcessPool, WorkspaceSpec } from './pool'
import { createPool, getFilePoolName } from './pool'
import { createBenchmarkReporters, createReporters } from './reporters/utils'
Expand Down Expand Up @@ -78,7 +78,7 @@ export class Vitest {
private resolvedProjects: WorkspaceProject[] = []
public projects: WorkspaceProject[] = []

public distPath!: string
public distPath = distDir

private _cachedSpecs = new Map<string, WorkspaceSpec[]>()

Expand Down Expand Up @@ -560,20 +560,7 @@ export class Vitest {
}
}

private async initializeDistPath() {
if (this.distPath) {
return
}

// if Vitest is running globally, then we should still import local vitest if possible
const projectVitestPath = await this.vitenode.resolveId('vitest')
const vitestDir = projectVitestPath ? resolve(projectVitestPath.id, '../..') : rootDir
this.distPath = join(vitestDir, 'dist')
}

async runFiles(specs: TestSpecification[], allTestsRun: boolean) {
await this.initializeDistPath()

const filepaths = specs.map(spec => spec.moduleId)
this.state.collectPaths(filepaths)

Expand Down Expand Up @@ -638,8 +625,6 @@ export class Vitest {
}

async collectFiles(specs: WorkspaceSpec[]) {
await this.initializeDistPath()

const filepaths = specs.map(spec => spec.moduleId)
this.state.collectPaths(filepaths)

Expand Down
2 changes: 2 additions & 0 deletions packages/vitest/src/node/plugins/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import {
} from './utils'
import { VitestOptimizer } from './optimizer'
import { NormalizeURLPlugin } from './normalizeURL'
import { VitestCoreResolver } from './vitestResolver'

export async function VitestPlugin(
options: UserConfig = {},
Expand Down Expand Up @@ -253,6 +254,7 @@ export async function VitestPlugin(
SsrReplacerPlugin(),
...CSSEnablerPlugin(ctx),
CoverageTransform(ctx),
VitestCoreResolver(ctx),
options.ui ? await UIPlugin() : null,
...MocksPlugins(),
VitestOptimizer(),
Expand Down
24 changes: 22 additions & 2 deletions packages/vitest/src/node/plugins/vitestResolver.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import type { Plugin } from 'vite'
import { join, resolve } from 'pathe'
import type { Vitest } from '../core'
import { distDir } from '../../paths'

export function VitestResolver(ctx: Vitest): Plugin {
export function VitestProjectResolver(ctx: Vitest): Plugin {
const plugin: Plugin = {
name: 'vitest:resolve-root',
enforce: 'pre',
async resolveId(id, _, { ssr }) {
if (id === 'vitest' || id.startsWith('@vitest/')) {
if (id === 'vitest' || id.startsWith('@vitest/') || id.startsWith('vitest/')) {
// always redirect the request to the root vitest plugin since
// it will be the one used to run Vitest
const resolved = await ctx.server.pluginContainer.resolveId(id, undefined, {
Expand All @@ -19,3 +21,21 @@ export function VitestResolver(ctx: Vitest): Plugin {
}
return plugin
}

export function VitestCoreResolver(ctx: Vitest): Plugin {
return {
name: 'vitest:resolve-core',
enforce: 'pre',
async resolveId(id) {
if (id === 'vitest') {
return resolve(distDir, 'index.js')
}
if (id.startsWith('@vitest/') || id.startsWith('vitest/')) {
// ignore actual importer, we want it to be resolved relative to the root
return this.resolve(id, join(ctx.config.root, 'index.html'), {
skipSelf: true,
})
}
},
}
}
4 changes: 2 additions & 2 deletions packages/vitest/src/node/plugins/workspace.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
hijackVitePluginInject,
resolveFsAllow,
} from './utils'
import { VitestResolver } from './vitestResolver'
import { VitestProjectResolver } from './vitestResolver'
import { VitestOptimizer } from './optimizer'
import { NormalizeURLPlugin } from './normalizeURL'

Expand Down Expand Up @@ -140,7 +140,7 @@ export function WorkspaceVitestPlugin(
...CSSEnablerPlugin(project),
CoverageTransform(project.ctx),
...MocksPlugins(),
VitestResolver(project.ctx),
VitestProjectResolver(project.ctx),
VitestOptimizer(),
NormalizeURLPlugin(),
]
Expand Down

0 comments on commit cd9ab99

Please sign in to comment.