Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Test for all helpers and features added #17

Merged
merged 8 commits into from
Feb 5, 2024
Prev Previous commit
Next Next commit
fix(test): Memory removed with sqlite migration
  • Loading branch information
achyutkneupane committed Feb 5, 2024
commit 8d60f4858ac0d2356f26bb2f2463527ad90a242c
2 changes: 1 addition & 1 deletion tests/BaseTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function setUp(): void

// test migrations
$this->loadMigrationsFrom(__DIR__ . '/migrations');
$this->artisan('migrate', ['--database' => ':memory:'])->run();
$this->artisan('migrate')->run();
}

protected function getEnvironmentSetUp($app): void
Expand Down