Skip to content

Commit 8f8cb6a

Browse files
committed
Disable two-factor authentication for test user in DatabaseSeeder
1 parent 6510b26 commit 8f8cb6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/seeders/DatabaseSeeder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public function run(): void
1515
{
1616
// User::factory(10)->create();
1717

18-
User::factory()->create([
18+
User::factory()->withoutTwoFactor()->create([
1919
'name' => 'Test User',
2020
'email' => '[email protected]',
2121
]);

0 commit comments

Comments
 (0)