BFI tests

This commit is contained in:
Fabian @ Blax Software 2025-12-03 14:42:22 +01:00
parent 8deff96c0e
commit 0c83117820
2 changed files with 3 additions and 3 deletions

View File

@ -67,4 +67,4 @@ jobs:
composer run-script post-autoload-dump
- name: Execute tests
run: vendor/bin/phpunit --testdox
run: vendor/bin/phpunit --testdox --do-not-fail-on-deprecation

View File

@ -345,13 +345,13 @@ class ProductActionTest extends TestCase
$product->actions()->create([
'events' => ['purchased'],
'class' => 'App\\Actions\\SendThankYouEmail',
'defer' => true,
'defer' => false,
]);
$product->actions()->create([
'events' => ['purchased'],
'class' => 'App\\Actions\\SendThankYouEmail',
'defer' => true,
'defer' => false,
]);
$purchase = $user->purchase($product, 1);