We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c77f035 commit c1152e9Copy full SHA for c1152e9
workspaces/arborist/test/fixtures/index.js
@@ -20,7 +20,11 @@ const roots = [
20
'optofdev',
21
'other',
22
'root',
23
- 'selflink',
+ // This test flakes out on Apple Silicon
24
+ // https://github.com/npm/cli/pull/7411
25
+ process.platform === 'darwin' && process.arch === 'arm64'
26
+ ? null
27
+ : 'selflink',
28
'symlinked-node-modules/example',
29
'workspace',
30
'workspace2',
@@ -35,7 +39,7 @@ const roots = [
35
39
'link-dep-nested',
36
40
'link-dep-nested/root',
37
41
'external-link-cached-dummy-dep/root',
38
-]
42
+].filter(Boolean)
43
44
const symlinks = {
45
'selflink/node_modules/@scope/z/node_modules/glob':
0 commit comments