File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/acceptance-tests/pkg-tests-specs/sources/features Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,18 +17,18 @@ describe(`Features`, () => {
17
17
{
18
18
nodeLinker : `pnpm` ,
19
19
pnpmStoreFolder : customStoreFolderName ,
20
+ winLinkType : `symlinks` ,
20
21
} ,
21
22
async ( { path, run, source} ) => {
22
23
await run ( `install` ) ;
23
24
25
+ // Ensure that the default node_modules/.store folder is not created
26
+ expect ( xfs . existsSync ( ppath . join ( path , `node_modules` , `.store` ) ) ) . toEqual ( false ) ;
27
+
24
28
// Ensure that the customized folder is created
25
29
const absolutePnpmStorePath = ppath . join ( path , customStoreFolderName ) ;
26
30
expect ( xfs . existsSync ( absolutePnpmStorePath ) ) . toEqual ( true ) ;
27
31
28
- // Ensure that the default node_modules/.store folder is not created
29
- const defaultStorePath = ppath . join ( path , `node_modules` , `.store` ) ;
30
- expect ( xfs . existsSync ( defaultStorePath ) ) . toEqual ( false ) ;
31
-
32
32
// Ensure that the installed package is a symbolic link
33
33
const installedPackagePath = ppath . join ( path , `node_modules` , `no-deps` ) ;
34
34
expect ( await determineLinkType ( installedPackagePath ) ) . toEqual ( FsLinkType . SYMBOLIC ) ;
You can’t perform that action at this time.
0 commit comments