Set the hashing rounds low to speed up tests
This commit is contained in:
parent
d03559080f
commit
f3144b872f
1 changed files with 2 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
namespace Tests;
|
||||
|
||||
use Cake\Chronos\Chronos;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
||||
|
||||
abstract class TestCase extends BaseTestCase
|
||||
|
@ -16,6 +17,7 @@ abstract class TestCase extends BaseTestCase
|
|||
{
|
||||
parent::setUp();
|
||||
|
||||
Hash::setRounds(4);
|
||||
$this->setKnownUuidFactory();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue