Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpLinksShouldEndWithBackToTopTest.php
2026-03-19 14:12:55 +08:00

33 lines
892 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpLinksShouldEndWithBackToTopTest 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_end_with_back_to_top(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/po-page-jump-list[\s\S]*?订单列表[\s\S]*?po-page-jump-top[\s\S]*?回顶部/u', $html);
}
}