5001, 'name' => 'System Admin', 'mail' => 'admin@runsystem.net', 'pass' => md5('password'), 'departments' => 1, 'role' => \App\Models\User::ROLE_ADMIN, 'status' => \App\Models\User::STATUS_ACTIVE, 'card' => 10, 'flag_send' => \App\Models\User::FLAG_SEND_ENABLED, 'first_login' => \App\Models\User::FIRST_LOGIN_FALSE, ]); $this->actingAs($user); $response = $this->get('/my-page'); $response->assertOk(); $response->assertSee('Thanks gần đây', false); $response->assertSee('Bảng xếp hạng', false); $response->assertSee('lg:flex-row', false); $response->assertSee('flex-1 min-w-0', false); $response->assertSee('lg:w-[32%]', false); $response->assertSee('lg:min-w-[340px]', false); $response->assertSee('lg:max-w-[400px]', false); } }