File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ exports.configureTestResult = (result) => {
12
12
browserId : result . browserId ,
13
13
file : utils . getRelativePath ( filePath ) ,
14
14
duration : result . duration || null ,
15
- meta : result . meta
15
+ meta : result . meta ,
16
+ startTime : result . startTime
16
17
} ;
17
18
18
19
const metaUrl = _ . get ( result , 'meta.url' , '' ) ;
Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ describe('collector/tool/hermione', () => {
86
86
file : '/cwd/file/path' ,
87
87
meta : { url : 'http://some-url/some-path' , foo : 'bar' } ,
88
88
duration : 12345 ,
89
- parent : mkDataStub_ ( { title : 'some full' } )
89
+ parent : mkDataStub_ ( { title : 'some full' } ) ,
90
+ startTime : 1000
90
91
} ) ;
91
92
92
93
utils . getRelativePath . withArgs ( '/cwd/file/path' ) . returns ( 'file/path' ) ;
@@ -100,7 +101,8 @@ describe('collector/tool/hermione', () => {
100
101
file : 'file/path' ,
101
102
url : '/some-path' ,
102
103
meta : { url : 'http://some-url/some-path' , foo : 'bar' } ,
103
- duration : 12345
104
+ duration : 12345 ,
105
+ startTime : 1000
104
106
} ) ;
105
107
} ) ;
106
108
You can’t perform that action at this time.
0 commit comments