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.
2 parents 104084b + b67391f commit 5c40f52Copy full SHA for 5c40f52
index.js
@@ -164,7 +164,7 @@ async function createCodecept(opts) {
164
fs.writeJsonSync('package.json', packageJson, { spaces: 4 });
165
166
167
- await install(deps.flat());
+ await install(root, deps.flat());
168
169
console.log('Finished installing packages.');
170
@@ -188,7 +188,7 @@ async function createCodecept(opts) {
188
}
189
190
191
-async function install(dependencies, verbose) {
+async function install(root, dependencies, verbose) {
192
return new Promise((resolve, reject) => {
193
let command;
194
let args;
0 commit comments