Skip to content

Commit 1223794

Browse files
committed
Joining the specs array before sending
1 parent 752b0b2 commit 1223794

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/helpers/capabilityHelper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ const caps = (bsConfig, zip) => {
7070
obj.parallels = bsConfig.run_settings.parallels;
7171

7272
if (!Utils.isUndefined(bsConfig.run_settings.specs)){
73-
obj.specs = bsConfig.run_settings.specs;
73+
obj.specs = bsConfig.run_settings.specs.join(",");
7474
}
7575

7676
if (!Utils.isUndefined(bsConfig.run_settings.env)){

0 commit comments

Comments
 (0)