There was an error while loading. Please reload this page.
1 parent 2171a03 commit 7a8e1ccCopy full SHA for 7a8e1cc
1 file changed
tests/e2e/e2eUtils.js
@@ -43,8 +43,9 @@ async function getPluginPackagePath() {
43
{ cwd: PROJECT_DIR }
44
);
45
const packageFile = stdout.trim().split(/\r?\n/).pop();
46
+ const packagePath = path.isAbsolute(packageFile) ? packageFile : path.join(packageDir, packageFile);
47
- return path.join(packageDir, packageFile);
48
+ return packagePath.replace(/\\/g, '/');
49
})();
50
}
51
0 commit comments