feat: working on ci/cd
This commit is contained in:
parent
69fba7af23
commit
1e09e0b1b9
1 changed files with 13 additions and 1 deletions
|
|
@ -1,10 +1,22 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests;
|
||||
|
||||
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||
|
||||
abstract class TestCase extends BaseTestCase
|
||||
{
|
||||
//
|
||||
/**
|
||||
* Indicates whether the default seeder should run before each test.
|
||||
*
|
||||
* @var bool
|
||||
*/
|
||||
protected $seed = true;
|
||||
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue