diff --git a/tests/Feature/AdminPlatformOrderToolAnchorButtonShouldKeepRoleHrefClassAndAriaTogetherTest.php b/tests/Feature/AdminPlatformOrderToolAnchorButtonShouldKeepRoleHrefClassAndAriaTogetherTest.php new file mode 100644 index 0000000..7868287 --- /dev/null +++ b/tests/Feature/AdminPlatformOrderToolAnchorButtonShouldKeepRoleHrefClassAndAriaTogetherTest.php @@ -0,0 +1,21 @@ +assertStringContainsString('data-role="{{ $role }}"', $partial); + $this->assertStringContainsString('aria-label="{{ $ariaLabel }}"', $partial); + $this->assertStringContainsString('class="{{ $class ??', $partial); + $this->assertStringContainsString('href="{{ $href ??', $partial); + } +}