seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_status_summary_cards_should_have_cross_links(): void { $this->loginAsPlatformAdmin(); $this->get('/admin/site-subscriptions') ->assertOk() ->assertSee('查看待生效') ->assertSee('查看已生效') ->assertSee('status=activated', false) ->assertSee('status=pending', false) ->assertSee('status=cancelled', false); } }