Laravel Tutorials

Test Deferred Operations Easily with Laravel's withoutDefer Helper

Published
Test Deferred Operations Easily with Laravel's withoutDefer Helper image

Laravel introduces new test helpers to control deferred operation execution, allowing developers to test deferred functions without waiting for the request lifecycle to complete.

Control deferred execution in your tests:

// triggered deferred operations won't execute immediately
Product::create(['name' => 'Widget']);
$this->assertAgainstSomeDeferredOutcome(); // ❌ Fails
 
// triggered deferred operations execute immediately
$this->withoutDefer();
Product::create(['name' => 'Widget']);
$this->assertAgainstSomeDeferredOutcome(); // ✅ Passes

Here's how you might use it in your test suite:

class OrderProcessingTest extends TestCase
{
public function test_confirmation_email_is_queued_after_order()
{
Mail::fake();
 
$this->withoutDefer();
 
$order = Order::create([
'customer_id' => 123,
'total' => 99.99,
'status' => 'pending'
]);
 
Mail::assertQueued(OrderConfirmationEmail::class, function ($mail) use ($order) {
return $mail->hasTo($order->customer->email);
});
}
 
public function test_inventory_tracking_is_updated()
{
Event::fake();
 
$this->withoutDefer();
 
$product = Product::factory()->create();
$product->adjustStock(-5);
 
Event::assertDispatched(InventoryAdjusted::class, function ($event) use ($product) {
return $event->product_id === $product->id;
});
 
$this->withDefer();
}
}

These helpers make it straightforward to test code that relies on deferred execution without waiting for the end of the request lifecycle.

Harris Raftopoulos photo

Senior Software Engineer • Staff & Educator @ Laravel News • Co-organizer @ Laravel Greece Meetup

Sponsored

laravelcloud logo
Laravel Cloud

Easily create and manage your servers and deploy your Laravel applications in seconds.

Visit Laravel Cloud

The latest

View all →
Laravel Auditor Audits Your App With Your Own AI Agent image

Laravel Auditor Audits Your App With Your Own AI Agent

Read article
A simple form builder that stays out of your way image

A simple form builder that stays out of your way

Read article
Laravel AI: Trace Agent Runs With Lifecycle Events image

Laravel AI: Trace Agent Runs With Lifecycle Events

Read article
Laravel AI: Get Raw HTTP Responses and Rate Limits image

Laravel AI: Get Raw HTTP Responses and Rate Limits

Read article
Agent Run Observability in Laravel AI SDK 0.11 image

Agent Run Observability in Laravel AI SDK 0.11

Read article
Debounced Queued Event Listeners in Laravel image

Debounced Queued Event Listeners in Laravel

Read article