A Laravel test that requires authentication does not pass in GitHub action
I have a simple test that checks that the dashboard is renderable for authenticated users. Here is the code: <?php namespace TestsFeature; use AppModelsUser; use TestsTestCase; class DashboardTest extends TestCase { public function test_dashboard_page_can_be_rendered() { $this->actingAs(User::factory()->create()); $response = $this->get('/dashboard'); $response->assertStatus(200);…