refactor(js): 复制失败toast文案收敛为toastCopyFailed并更新护栏

This commit is contained in:
萝卜
2026-03-17 17:43:58 +08:00
parent c245d872ca
commit 7f1f5a6887
3 changed files with 41 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class AdminJsToastCopyFailedHelperShouldExistTest extends TestCase
{
use RefreshDatabase;
public function test_admin_js_should_include_toast_copy_failed_helper(): void
{
$js = file_get_contents(public_path('js/admin.js'));
$this->assertIsString($js);
$this->assertStringContainsString('function toastCopyFailed', $js);
$this->assertStringContainsString("msg = '复制失败'", $js);
$this->assertStringContainsString("return toastError(msg)", $js);
}
}