Skip to content

Commit c4161ba

Browse files
committed
Fix
1 parent 5c25852 commit c4161ba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"composer update laravel/framework:10.* orchestra/testbench:8.* nunomaduro/collision:7.* --with-all-dependencies"
5050
],
5151
"test": [
52+
"testbench workbench:create-sqlite-db",
5253
"testbench package:test"
5354
],
5455
"post-autoload-dump": [

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected function getEnvironmentSetUp($app)
6969
'driver' => $driver,
7070
...match ($driver) {
7171
'sqlite' => [
72-
'database' => ':memory:',
72+
'database' => database_path('database.sqlite'),
7373
],
7474
'mysql' => [
7575
'host' => '127.0.0.1',

0 commit comments

Comments
 (0)