HOME


Mini Shell 1.0
Negocios La Pieza.DO | Registrate o Inicia Sesión

Inicie Sesión en su Cuenta de Negocios

Olvidó Contraseña?
DIR: /var/www/devs.lapieza.net/vendor/livewire/livewire/src/Commands/
Upload File :
Current File : //var/www/devs.lapieza.net/vendor/livewire/livewire/src/Commands/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 the_component_can_render()
    {
        $component = Livewire::test([class]::class);

        $component->assertStatus(200);
    }
}