File "livewire.test.stub"

Full Path: /home/fundopuh/trader.fxex.org/vendor/livewire/livewire/src/Commands/livewire.test.stub
File size: 409 bytes
MIME-type: text/x-php
Charset: utf-8

<?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 the_component_can_render()
    {
        $component = Livewire::test([class]::class);

        $component->assertStatus(200);
    }
}