Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dc09db0

Browse files
committed
fix build
1 parent b584fa7 commit dc09db0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ _.each(relevant, function([dir,name]) {
7272

7373
var testable = args.check ? relevant : [];
7474
_.each(testable, function([dir,name]) {
75-
let fullname = dir + name;
76-
if(fs.statSync(fullname).isDirectory() && fs.existsSync(path.join(fullname, "package.json"))) {
75+
let fullname = path.join("frameworks", dir, name);
76+
if(fs.statSync(fullname).isDirectory() && fs.existsSync(path.join(fullname, "package.json"))) {
7777
console.log("*** Executing npm run selenium for "+fullname);
7878
exec(`npm run bench ${dir}/${name} -- --count 1 --fork false --noResults`, {
7979
cwd: "webdriver-ts",

0 commit comments

Comments
 (0)