From 9baa7d6bbb1d501e48e40077fa458ec574e0e219 Mon Sep 17 00:00:00 2001 From: henrikburmann <haburmann@gmail.com> Date: Fri, 6 May 2022 17:31:31 +0200 Subject: [PATCH] UserItems tests --- .../__snapshots__/user-items.spec.js.snap | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/unit/component-tests/user-component-tests/__snapshots__/user-items.spec.js.snap b/tests/unit/component-tests/user-component-tests/__snapshots__/user-items.spec.js.snap index 43cdef3..344d5b6 100644 --- a/tests/unit/component-tests/user-component-tests/__snapshots__/user-items.spec.js.snap +++ b/tests/unit/component-tests/user-component-tests/__snapshots__/user-items.spec.js.snap @@ -105,6 +105,7 @@ exports[`UserItems component renders correctly 1`] = ` </div> </div> + <!-- Dropdown menu with options for editing an item and deleting an item --> <button class="w-10 h-10 text-gray-500 dark:text-gray-400 hover:bg-gray-100 dark:hover:bg-gray-700 focus:outline-none focus:ring-4 focus:ring-gray-200 dark:focus:ring-gray-700 rounded-lg float-right text-sm p-1.5 DotButton" data-dropdown-toggle="dropdown" @@ -112,13 +113,18 @@ exports[`UserItems component renders correctly 1`] = ` type="button" > <svg + aria-hidden="true" class="w-6 h-6" - fill="currentColor" - viewBox="0 0 20 20" + fill="none" + stroke="currentColor" + stroke-width="2" + viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" > <path - d="M10 6a2 2 0 110-4 2 2 0 010 4zM10 12a2 2 0 110-4 2 2 0 010 4zM10 18a2 2 0 110-4 2 2 0 010 4z" + d="M12 5v.01M12 12v.01M12 19v.01M12 6a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2zm0 7a1 1 0 110-2 1 1 0 010 2z" + stroke-linecap="round" + stroke-linejoin="round" /> </svg> </button> -- GitLab