Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldHaveVisiblePrefixTest.php
2026-03-19 11:53:53 +08:00

34 lines
907 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpLinksShouldHaveVisiblePrefixTest extends TestCase
{
use RefreshDatabase;
protected function loginAsPlatformAdmin(): void
{
$this->seed();
$this->post('/admin/login', [
'email' => 'platform.admin@demo.local',
'password' => 'Platform@123456',
])->assertRedirect('/admin');
}
public function test_platform_orders_page_jump_links_should_have_visible_prefix(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-prefix"', $html);
$this->assertStringContainsString('页内导航:', $html);
}
}