We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 767260b commit e8cac88Copy full SHA for e8cac88
tests/TestCase.php
@@ -8,15 +8,6 @@
8
9
class TestCase extends Orchestra
10
{
11
- protected function setUp(): void
12
- {
13
- parent::setUp();
14
-
15
- Factory::guessFactoryNamesUsing(
16
- fn (string $modelName) => 'LaraZeus\\Progress\\Database\\Factories\\'.class_basename($modelName).'Factory'
17
- );
18
- }
19
20
protected function getPackageProviders($app)
21
22
return [
@@ -27,10 +18,5 @@ protected function getPackageProviders($app)
27
public function getEnvironmentSetUp($app)
28
29
config()->set('database.default', 'testing');
30
31
- /*
32
- $migration = include __DIR__.'/../database/migrations/create_progress_table.php.stub';
33
- $migration->up();
34
- */
35
}
36
0 commit comments