File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -437,7 +437,7 @@ const getBuildDetails = (bsConfig) => {
437437 /* Pick from run settings */
438438 buildName = buildName || bsConfig [ "run_settings" ] [ "build_name" ] ;
439439 projectName = projectName || bsConfig [ "run_settings" ] [ "project_name" ] ;
440- buildTags = [ ...buildTags , bsConfig [ "run_settings" ] [ "build_tag" ] ] ;
440+ if ( ! utils . isUndefined ( bsConfig [ "run_settings" ] [ "build_tag" ] ) ) buildTags = [ ...buildTags , bsConfig [ "run_settings" ] [ "build_tag" ] ] ;
441441
442442 buildName = buildName || path . basename ( path . resolve ( process . cwd ( ) ) ) ;
443443
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ class MyReporter {
386386 event_type : eventType === "TestRunSkipped" ? "TestRunFinished" : eventType ,
387387 }
388388
389- if ( eventType . match ( / F i n i s h e d / ) ) delete testData . started_at ;
389+ if ( eventType == "HookRunFinished" ) delete testData . started_at ;
390390
391391 if ( eventType . match ( / H o o k R u n / ) ) {
392392 testData [ 'hook_type' ] = HOOK_TYPES_MAP [ testData [ 'hook_type' ] ] ;
You can’t perform that action at this time.
0 commit comments