Skip to content

Commit

Permalink
Skip exit test in thread
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Dec 27, 2023
1 parent bedf7ed commit 42c53f0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions test/Context/ThreadContextTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,16 @@ public function createContext(string|array $script): Context

public function testExitingProcessOnReceive(): void
{
$this->markTestSkipped('exit in thread is buggy');
$this->markTestSkipped('exit in thread is not supported');
}

public function testExitingProcessOnSend(): void
{
$this->markTestSkipped('exit in thread is buggy');
$this->markTestSkipped('exit in thread is not supported');
}

public function testExitingProcess(): void
{
$this->markTestSkipped('exit in thread is not supported');
}
}

0 comments on commit 42c53f0

Please sign in to comment.