We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0877e4d commit bb4a952Copy full SHA for bb4a952
packages/angular/build/src/builders/unit-test/runners/vitest/plugins.ts
@@ -171,7 +171,8 @@ export function createVitestPlugins(pluginOptions: PluginOptions): VitestPlugins
171
name: 'angular:test-in-memory-provider',
172
enforce: 'pre',
173
resolveId: (id, importer) => {
174
- if (importer && (id[0] === '.' || id[0] === '/')) {
+ console.log({ id, importer });
175
+ if (importer && (id[0] === '.' || id[0] === '/' || id[0] === '\\')) {
176
let fullPath;
177
if (testFileToEntryPoint.has(importer)) {
178
fullPath = toPosixPath(path.join(workspaceRoot, id));
0 commit comments