seed(); $this->post('/admin/login', [ 'email' => 'platform.admin@demo.local', 'password' => 'Platform@123456', ])->assertRedirect('/admin'); } public function test_platform_orders_tool_grid_should_have_jump_links(): void { $this->loginAsPlatformAdmin(); $res = $this->get('/admin/platform-orders'); $res->assertOk(); $html = (string) $res->getContent(); $this->assertStringContainsString('data-role="po-tools-grid-jump-links"', $html); $this->assertStringContainsString('href="#po-tools-export"', $html); $this->assertStringContainsString('href="#batch-activate-subscriptions"', $html); $this->assertStringContainsString('href="#po-tools-batch-bmpa"', $html); $this->assertStringContainsString('href="#po-tools-batch-mark-activated"', $html); $this->assertStringContainsString('href="#po-tools-clear-sync-errors"', $html); $this->assertStringContainsString('href="#po-tools-clear-bmpa-errors"', $html); } }