Level 3
Hmm seems to be working now. Could app cache, old compiled views, etc. be part of the problem?
With this test:
public function testDashboard()
{
$user = factory('App\Repositories\User')->make(['name' => 'Jesse', 'client_id' => 1]);
$this->actingAs($user)
->visit('dashboard')
->see('Jesse');
}
Test still passes, but my page is broken:
Why is test passing?
Please or to participate in this conversation.