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) => {
437
437
/* Pick from run settings */
438
438
buildName = buildName || bsConfig [ "run_settings" ] [ "build_name" ] ;
439
439
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" ] ] ;
441
441
442
442
buildName = buildName || path . basename ( path . resolve ( process . cwd ( ) ) ) ;
443
443
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ class MyReporter {
386
386
event_type : eventType === "TestRunSkipped" ? "TestRunFinished" : eventType ,
387
387
}
388
388
389
- if ( eventType . match ( / F i n i s h e d / ) ) delete testData . started_at ;
389
+ if ( eventType == "HookRunFinished" ) delete testData . started_at ;
390
390
391
391
if ( eventType . match ( / H o o k R u n / ) ) {
392
392
testData [ 'hook_type' ] = HOOK_TYPES_MAP [ testData [ 'hook_type' ] ] ;
You can’t perform that action at this time.
0 commit comments