Skip to content

Commit b825fb5

Browse files
committed
Testing husky
1 parent 1058209 commit b825fb5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

routes/web.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?php
22

3-
use App\Http\Controllers\Settings\DeleteController;
43
use App\Http\Controllers\Settings\PasswordController;
54
use App\Http\Controllers\Settings\ProfileController;
65
use Illuminate\Foundation\Application;
@@ -16,7 +15,7 @@
1615
]);
1716
})->name('home');
1817

19-
Route::get('dashboard', function(){
18+
Route::get('dashboard', function () {
2019
return Inertia::render('Dashboard');
2120
})->middleware(['auth', 'verified'])->name('dashboard');
2221

tests/Feature/Settings/ProfileUpdateTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@
5050
$this->assertNotNull($user->refresh()->email_verified_at);
5151
});
5252

53-
5453
// Delete Profile Tests
5554

5655
test('user can delete their account', function () {

0 commit comments

Comments
 (0)