Skip to content

Commit

Permalink
Fix database issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joshhanley committed Apr 24, 2024
1 parent d2cf471 commit 3389571
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ jobs:
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update --dev
composer update --prefer-stable --no-interaction --no-suggest
- name: Touch database
run:
mkdir -p database
touch database/database.sqlite
# - name: Touch database
# run:
# mkdir -p database
# touch database/database.sqlite

- name: Setup dusk/chrome
run: vendor/bin/dusk-updater detect --no-interaction
Expand Down
1 change: 1 addition & 0 deletions tests/Browser/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public static function tweakApplicationHook()
return function () {
config()->set('autocomplete.options.auto-select', false);
config()->set('autocomplete.options.allow-new', false);
config()->set('database.default', 'sqlite');
};
}

Expand Down

0 comments on commit 3389571

Please sign in to comment.