Skip to content

Commit

Permalink
Dont skip PHP 8.4 Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Jubeki committed Oct 24, 2024
1 parent b86d0a4 commit 0b903da
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 21 deletions.
7 changes: 0 additions & 7 deletions tests/Unit/Adapters/ArtisanTestCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@

class ArtisanTestCommandTest extends TestCase
{
public function setUp(): void
{
if (PHP_VERSION_ID >= 80400) {
$this->markTestSkipped('Test skipped on PHP 8.4');
}
}

#[Test]
public function testCoverage(): void
{
Expand Down
7 changes: 0 additions & 7 deletions tests/Unit/Adapters/LaravelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,6 @@

class LaravelTest extends TestCase
{
public function setUp(): void
{
if (PHP_VERSION_ID >= 80400) {
$this->markTestSkipped('Test skipped on PHP 8.4');
}
}

#[Test]
public function itIsRegisteredOnArtisan(): void
{
Expand Down
7 changes: 0 additions & 7 deletions tests/Unit/Adapters/PhpunitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@

class PhpunitTest extends TestCase
{
public function setUp(): void
{
if (PHP_VERSION_ID >= 80400) {
$this->markTestSkipped('Test skipped on PHP 8.4');
}
}

#[Test]
public function itIsAPrinter(): void
{
Expand Down

0 comments on commit 0b903da

Please sign in to comment.