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 7faf193 commit b67391fCopy full SHA for b67391f
index.js
@@ -156,7 +156,7 @@ async function createCodecept(opts) {
156
fs.writeJsonSync('package.json', packageJson, { spaces: 4 });
157
158
159
- await install(deps.flat());
+ await install(root, deps.flat());
160
161
console.log('Finished installing packages.');
162
@@ -180,7 +180,7 @@ async function createCodecept(opts) {
180
}
181
182
183
-async function install(dependencies, verbose) {
+async function install(root, dependencies, verbose) {
184
return new Promise((resolve, reject) => {
185
let command;
186
let args;
0 commit comments