EmilMoe's avatar
Level 10

Dusk: The process has been signaled with signal "11"

I'm struggling to make Dusk tests work due to this error.

As far as I have been able to narrow it down, it's the connection to MySQL from using either of these (but probably the connection in general):

use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\RefreshDatabase;

I'm using Laravel Herd (pro) on macOS Sequoia, if that gives any hints.

The error:

Symfony\Component\Process\Exception\ProcessSignaledException 

  The process has been signaled with signal "11".

  at vendor/symfony/process/Process.php:461
    457▕             usleep(1000);
    458▕         }
    459▕ 
    460▕         if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->latestSignal) {
  ➜ 461▕             throw new ProcessSignaledException($this);
    462▕         }
    463▕ 
    464▕         return $this->exitcode;
    465▕     }
0 likes
0 replies

Please or to participate in this conversation.