Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Disable Ably tests on PHP 8.2 for now
  • Loading branch information
driesvints committed Sep 12, 2022
commit 63c684e6c6c795587a2d8e6ca97991ff3efb925f
4 changes: 4 additions & 0 deletions tests/Broadcasting/AblyBroadcasterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ class AblyBroadcasterTest extends TestCase

protected function setUp(): void
{
if (phpversion() >= '8.2') {
$this->markTestSkipped('Tests are broken on PHP 8.2');
}

parent::setUp();

$this->ably = m::mock(AblyRest::class, ['abcd:efgh']);
Expand Down