From 527c59215f470076e22e274df5365750a5012630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=90=9D=E5=8D=9C?= Date: Thu, 19 Mar 2026 05:13:23 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5=E5=BC=BA=E5=B9=B3=E5=8F=B0=E8=AE=A2?= =?UTF-8?q?=E5=8D=95=E5=8A=A8=E4=BD=9C=E7=BB=84=E4=BB=B6=E8=AF=AD=E4=B9=89?= =?UTF-8?q?=E8=83=BD=E5=8A=9B=E6=8A=A4=E6=A0=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...tionPartialsShouldSupportAriaLabelTest.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/Feature/AdminPlatformOrderActionPartialsShouldSupportAriaLabelTest.php diff --git a/tests/Feature/AdminPlatformOrderActionPartialsShouldSupportAriaLabelTest.php b/tests/Feature/AdminPlatformOrderActionPartialsShouldSupportAriaLabelTest.php new file mode 100644 index 0000000..75a1830 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderActionPartialsShouldSupportAriaLabelTest.php @@ -0,0 +1,23 @@ +assertStringContainsString('aria-label', $summaryPartial); + $this->assertStringContainsString('$ariaLabel', $summaryPartial); + + $this->assertStringContainsString('aria-label', $toolPartial); + $this->assertStringContainsString('$ariaLabel', $toolPartial); + } +}