Skip to content

Commit

Permalink
Skip one of the e2e test for phpdbg
Browse files Browse the repository at this point in the history
  • Loading branch information
maks-rafalko committed Feb 9, 2019
1 parent 8d5b184 commit 5aa9872
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/Console/E2ETest.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,12 @@ public function test_it_runs_on_itself(): void
/**
* @group e2e
*/
public function t1est_it_runs_configure_command_if_no_configuration(): void
public function test_it_runs_configure_command_if_no_configuration(): void
{
if (\PHP_SAPI === 'phpdbg') {
$this->markTestSkipped('Running this test on PHPDBG causes failures on Travis, see https://github.com/infection/infection/pull/622.');
}

chdir('tests/Fixtures/e2e/Unconfigured/');

$output = $this->runInfection(self::EXPECT_ERROR);
Expand Down

0 comments on commit 5aa9872

Please sign in to comment.