21 lines
638 B
PHP
21 lines
638 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Illuminate\Foundation\Testing\RefreshDatabase;
|
|
use Tests\TestCase;
|
|
|
|
class AdminJsDashboardCardsHeightSyncShouldUseRecentOrdersHeightTest extends TestCase
|
|
{
|
|
use RefreshDatabase;
|
|
|
|
public function test_admin_js_should_include_dashboard_height_sync_selectors(): void
|
|
{
|
|
$js = (string) file_get_contents(public_path('js/admin.js'));
|
|
|
|
$this->assertStringContainsString('dashboard-card-recent-platform-orders', $js);
|
|
$this->assertStringContainsString('dashboard-card-trend', $js);
|
|
$this->assertStringContainsString('dashboard-card-billing-workbench', $js);
|
|
}
|
|
}
|