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 19f0d09 commit ef205fcCopy full SHA for ef205fc
tests/e2e/tests/vitest/windows-subst-drive.ts
@@ -32,6 +32,15 @@ export default async function (): Promise<void> {
32
// Verify that the file system mapping is working as expected.
33
assert(fs.existsSync('angular.json'), 'angular.json should exist on the subst drive');
34
35
+ // Enable preserveSymlinks to help mitigate dual-package issues where node_modules
36
+ // might be resolved to the physical drive (D:) vs the subst drive (X:).
37
+ await silentExec(
38
+ 'ng',
39
+ 'config',
40
+ 'projects.test-project.architect.test.options.preserveSymlinks',
41
+ 'true',
42
+ );
43
+
44
// 3. Run `ng test`.
45
const { stdout } = await exec('ng', 'test', '--watch=false');
46
0 commit comments