补充平台订单工具区快速定位导航
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Tests\TestCase;
|
||||
|
||||
class AdminPlatformOrderIndexToolGridShouldHaveJumpLinksTest 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_tool_grid_should_have_jump_links(): void
|
||||
{
|
||||
$this->loginAsPlatformAdmin();
|
||||
|
||||
$res = $this->get('/admin/platform-orders');
|
||||
$res->assertOk();
|
||||
|
||||
$html = (string) $res->getContent();
|
||||
$this->assertStringContainsString('data-role="po-tools-grid-jump-links"', $html);
|
||||
$this->assertStringContainsString('href="#po-tools-export"', $html);
|
||||
$this->assertStringContainsString('href="#batch-activate-subscriptions"', $html);
|
||||
$this->assertStringContainsString('href="#po-tools-batch-bmpa"', $html);
|
||||
$this->assertStringContainsString('href="#po-tools-batch-mark-activated"', $html);
|
||||
$this->assertStringContainsString('href="#po-tools-clear-sync-errors"', $html);
|
||||
$this->assertStringContainsString('href="#po-tools-clear-bmpa-errors"', $html);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user