Skip to content

Instantly share code, notes, and snippets.

@peterfox
Created June 8, 2019 19:27
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
public function testApi()
{
$this->postJson('/some-route', ['field' => 'on'])
->assertStatus(200)
->assertJsonFragment(['error' => true]);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment