Skip to content

Commit

Permalink
Re-enable skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsunet committed Sep 12, 2024
1 parent 4568a9a commit 8c81fd0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions Neos.Flow/Tests/Unit/Mvc/DispatcherTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,6 @@ protected function setUp(): void
*/
public function dispatchIgnoresStopExceptionsForFirstLevelActionRequests()
{
$this->markTestSkipped('TODO currently fails.');

$this->mockParentRequest->expects(self::once())->method('isMainRequest')->willReturn(true);

$this->mockController->expects(self::atLeastOnce())->method('processRequest')->will(self::throwException(StopActionException::createForResponse(new Response(), '')));

$this->dispatcher->dispatch($this->mockParentRequest);
Expand All @@ -151,8 +147,6 @@ public function dispatchIgnoresStopExceptionsForFirstLevelActionRequests()
*/
public function dispatchCatchesStopExceptionOfActionRequestsAndRollsBackToTheParentRequest()
{
$this->markTestSkipped('TODO currently not implemented to state what it says. Should fail.');

$this->mockController->expects(self::atLeastOnce())->method('processRequest')->will(self::throwException(StopActionException::createForResponse(new Response(), '')));

$this->dispatcher->dispatch($this->mockActionRequest);
Expand Down

0 comments on commit 8c81fd0

Please sign in to comment.