Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
marchershey committed May 17, 2024
1 parent e954936 commit 8ea16cd
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions app/tests/Feature/BasicDatabaseTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use App\Models\User;
use Illuminate\Foundation\Testing\RefreshDatabase;

uses(RefreshDatabase::class);

test('basic database test', function () {
$user = User::factory()->create();

$this->assertModelExists($user);
});

0 comments on commit 8ea16cd

Please sign in to comment.