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 5520cdc commit 0909758Copy full SHA for 0909758
tests/smoke/.yarnrc.yml
@@ -0,0 +1,4 @@
1
+nodeLinker: node-modules
2
+
3
+enableHardenedMode: false
4
+enableImmutableInstalls: false
tests/smoke/prepare.js
@@ -46,6 +46,8 @@ const preparePackageJson = reactVersion => () => {
46
path.join(__dirname, 'package.json'),
47
JSON.stringify(packageJson, null, 2)
48
);
49
50
+ fs.writeFileSync(path.join(__dirname, 'yarn.lock'), '');
51
};
52
53
const installDependencies = () => () =>
@@ -54,7 +56,7 @@ const installDependencies = () => () =>
54
56
return;
55
57
}
58
- execSync('yarn install --no-lockfile', {
59
+ execSync('yarn install', {
60
cwd: __dirname,
61
stdio: 'inherit',
62
});
0 commit comments