File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 23
23
<env name =" AUTH_PASSWORD_RESET_TOKEN_TABLE" value =" password_resets" />
24
24
<env name =" CACHE_STORE" value =" array" />
25
25
<env name =" DB_CONNECTION" value =" mysql" />
26
- <env name =" DB_DATABASE" value =" testing " />
26
+ <env name =" DB_DATABASE" value =" laravelio_testing " />
27
27
<env name =" MAIL_MAILER" value =" array" />
28
28
<env name =" SESSION_DRIVER" value =" array" />
29
29
<env name =" QUEUE_CONNECTION" value =" sync" />
32
32
<env name =" TELEGRAM_CHANNEL" value =" null" />
33
33
<env name =" FATHOM_SITE_ID" value =" 1234" />
34
34
<env name =" FATHOM_TOKEN" value =" 5678" />
35
+ <env name =" BCRYPT_ROUNDS" value =" 4" />
35
36
</php >
36
37
</phpunit >
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ use Tests \TestCase ;
4
+
5
+ uses (TestCase::class);
6
+
7
+ test ('bcrypt hashing rounds reduced for faster test execution ' , function () {
8
+ $ this ->assertEquals (4 , config ('hashing.bcrypt.rounds ' ));
9
+ });
You can’t perform that action at this time.
0 commit comments