jonnybarnes.uk/tests/Feature/Jobs/SaveScreenshotTest.php

23 lines
404 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature\Jobs;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithFaker;
use Tests\TestCase;
class SaveScreenshotTest extends TestCase
{
/**
* A basic feature test example.
*
* @return void
*/
public function test_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}