BFI tests
This commit is contained in:
parent
8deff96c0e
commit
0c83117820
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue