Skip to content

Commit

Permalink
Merge 58b4c68 into 3eb36ae
Browse files Browse the repository at this point in the history
  • Loading branch information
OndraM committed Jul 18, 2023
2 parents 3eb36ae + 58b4c68 commit a91c29d
Show file tree
Hide file tree
Showing 4 changed files with 124 additions and 78 deletions.
10 changes: 5 additions & 5 deletions src-tests/Timeline/TimelineDataBuilderTest.php
Expand Up @@ -82,39 +82,39 @@ public function testShouldBuildTimelineItemsForAllDoneTests(): void
[
'group' => 2,
'content' => 'testBarFirstPassed',
'title' => 'Foo\\BarPassedTest::testBarFirstPassed<br>(333 sec)',
'title' => 'Foo\\BarPassedTest::testBarFirstPassed<br>Duration: 333 sec | Result: passed',
'start' => '2016-12-29T12:56:29',
'end' => '2016-12-29T13:02:02',
'className' => 'passed',
],
[
'group' => 0,
'content' => 'testBarSecondPassed',
'title' => 'Foo\\BarPassedTest::testBarSecondPassed<br>(66 sec)',
'title' => 'Foo\\BarPassedTest::testBarSecondPassed<br>Duration: 66 sec | Result: passed',
'start' => '2016-12-29T12:57:05',
'end' => '2016-12-29T12:58:11',
'className' => 'passed',
],
[
'group' => 'unknown',
'content' => 'testBarThirdWithoutExecutor',
'title' => 'Foo\\BarPassedTest::testBarThirdWithoutExecutor<br>(1 sec)',
'title' => 'Foo\\BarPassedTest::testBarThirdWithoutExecutor<br>Duration: 1 sec | Result: passed',
'start' => '2016-12-29T12:56:28',
'end' => '2016-12-29T12:56:29',
'className' => 'passed',
],
[
'group' => 1,
'content' => 'testBarFirstPassed',
'title' => 'Foo\\BazFailedTest::testBarFirstPassed<br>(10 sec)',
'title' => 'Foo\\BazFailedTest::testBarFirstPassed<br>Duration: 10 sec | Result: passed',
'start' => '2016-12-29T12:57:05',
'end' => '2016-12-29T12:57:15',
'className' => 'passed',
],
[
'group' => 2,
'content' => 'testBazSecondBroken',
'title' => 'Foo\\BazFailedTest::testBazSecondBroken<br>(175 sec)',
'title' => 'Foo\\BazFailedTest::testBazSecondBroken<br>Duration: 175 sec | Result: broken',
'start' => '2017-01-02T03:02:08',
'end' => '2017-01-02T03:05:03',
'className' => 'broken',
Expand Down

0 comments on commit a91c29d

Please sign in to comment.