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 04cc74e commit 92eecbcCopy full SHA for 92eecbc
bin/helpers/utils.js
@@ -206,7 +206,7 @@ exports.isCypressProjDirValid = (cypressProjDir, integrationFoldDir) => {
206
let cypressDir = path.resolve(cypressProjDir);
207
let integrationFolderDir = path.resolve(integrationFoldDir);
208
if (!this.isAbsolute(integrationFoldDir)) {
209
- integrationFolderDir = path.join(cypressProjDir, integrationFoldDir);
+ integrationFolderDir = path.resolve(path.join(cypressProjDir, integrationFoldDir));
210
}
211
if (integrationFolderDir === cypressDir) return true;
212
let parentTokens = cypressDir.split("/").filter((i) => i.length);
0 commit comments