Files
saasshop/tests/Feature/AdminPlatformOrderSyncStatusSummaryCardLinksTest.php

33 lines
826 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminPlatformOrderSyncStatusSummaryCardLinksTest 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_shows_sync_status_summary_card_links(): void
{
$this->loginAsPlatformAdmin();
$this->get('/admin/platform-orders')
->assertOk()
->assertSee('已同步 / 未同步')
->assertSee('sync_status=synced')
->assertSee('sync_status=unsynced');
}
}