38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class AdminPlatformOrderIndexShouldHavePageJumpLinksTest 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_index_should_have_page_jump_links(): void
|
|
{
|
|
$this->loginAsPlatformAdmin();
|
|
|
|
$res = $this->get('/admin/platform-orders');
|
|
$res->assertOk();
|
|
|
|
$html = (string) $res->getContent();
|
|
$this->assertStringContainsString('data-role="po-page-jump-links"', $html);
|
|
$this->assertStringContainsString('href="#po-quick-filters"', $html);
|
|
$this->assertStringContainsString('href="#filters"', $html);
|
|
$this->assertStringContainsString('href="#po-summary-cards"', $html);
|
|
$this->assertStringContainsString('href="#po-tools-grid"', $html);
|
|
$this->assertStringContainsString('href="#po-list-card"', $html);
|
|
}
|
|
}
|