Files
saasshop/tests/Feature/AdminPlatformOrderIndexPageJumpBackToListShouldHaveUpdatedTitleTest.php
2026-03-19 17:11:06 +08:00

34 lines
946 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderIndexPageJumpBackToListShouldHaveUpdatedTitleTest 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_back_to_list_should_have_updated_title(): void
{
$this->loginAsPlatformAdmin();
$res = $this->get('/admin/platform-orders');
$res->assertOk();
$html = (string) $res->getContent();
$this->assertStringContainsString('data-role="po-page-jump-back-to-list"', $html);
$this->assertStringContainsString('title="回到订单列表查看明细"', $html);
}
}