Skip to content

Instantly share code, notes, and snippets.

View MizouziE's full-sized avatar
🚲

Sam MizouziE

🚲
View GitHub Profile
@MizouziE
MizouziE / laravel-test-job-dispatches-other-jobs.php
Last active September 26, 2023 13:33 — forked from djaiss/laravel-test-job-dispatches-other-jobs.php
How to test that a job dispatches another job in Laravel
<?php
namespace Tests\Unit\Jobs;
use Tests\TestCase;
use Illuminate\Support\Facades\Queue;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class FirstJobTest extends TestCase
{