Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpShouldKeepLinksAndNoteTogetherTest.php
2026-03-19 18:23:04 +08:00

33 lines
886 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpShouldKeepLinksAndNoteTogetherTest 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_should_keep_links_and_note_together(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertMatchesRegularExpression('/data-role="po-page-jump-links"[\s\S]*?data-role="po-page-jump-note"/u', $html);
}
}