Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Feb 20, 2022
1 parent 48c5257 commit 99e5f19
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/VisitCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@

use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Route;
use function Pest\Laravel\artisan;

beforeEach(function() {
beforeEach(function () {
Route::get('/', function () {
return 'get result';
});
});

it('can visit a page', function() {
it('can visit a page', function () {
Artisan::call('visit /');
expect(true)->toBe(true);

Expand Down

0 comments on commit 99e5f19

Please sign in to comment.