PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
livewire
/
livewire
/
src
/
Features
/
SupportConsoleCommands
/
Commands
/
Editing: livewire.test.stub
<?php namespace [testnamespace]; use [classwithnamespace]; use Illuminate\Foundation\Testing\RefreshDatabase; use Illuminate\Foundation\Testing\WithFaker; use Livewire\Livewire; use Tests\TestCase; class [testclass] extends TestCase { /** @test */ public function renders_successfully() { Livewire::test([class]::class) ->assertStatus(200); } }
SAVE
CANCEL