From 5f0b99530ff60322cd3b79b312e3ba33a65ad61e Mon Sep 17 00:00:00 2001
From: Gilgard <Hjelljord.alida@gmail.com>
Date: Mon, 2 May 2022 17:39:47 +0200
Subject: [PATCH] updated snapshots

---
 .../__snapshots__/community-header.spec.js.snap       |  2 +-
 .../__snapshots__/create-new-group.spec.js.snap       |  7 ++++---
 .../__snapshots__/login-form.spec.js.snap             |  6 +++---
 .../register-user-component.spec.js.snap              | 11 ++++++-----
 4 files changed, 14 insertions(+), 12 deletions(-)

diff --git a/tests/unit/component-tests/community-component-tests/__snapshots__/community-header.spec.js.snap b/tests/unit/component-tests/community-component-tests/__snapshots__/community-header.spec.js.snap
index 2a19e2d..2e1f24c 100644
--- a/tests/unit/component-tests/community-component-tests/__snapshots__/community-header.spec.js.snap
+++ b/tests/unit/component-tests/community-component-tests/__snapshots__/community-header.spec.js.snap
@@ -9,7 +9,7 @@ exports[`CommunityHeader component renders correctly 1`] = `
     to="/community/1"
   >
     <h2
-      class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate"
+      class="text-xl md:text-2xl text-gray-600 font-medium w-full sm:truncate"
     >
       String
     </h2>
diff --git a/tests/unit/component-tests/community-component-tests/__snapshots__/create-new-group.spec.js.snap b/tests/unit/component-tests/community-component-tests/__snapshots__/create-new-group.spec.js.snap
index ff9be7e..dd345a3 100644
--- a/tests/unit/component-tests/community-component-tests/__snapshots__/create-new-group.spec.js.snap
+++ b/tests/unit/component-tests/community-component-tests/__snapshots__/create-new-group.spec.js.snap
@@ -5,11 +5,11 @@ exports[`CreateNewGroup elements rendering renders correctly 1`] = `
   class="md:ring-1 ring-gray-300 rounded-xl overflow-hidden mx-auto mb-auto max-w-md w-full p-4"
 >
   <!-- Component heading -->
-  <h3
-    class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
+  <div
+    class="text-xl md:text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-10"
   >
      Opprett ny gruppe 
-  </h3>
+  </div>
   <!-- Radio boxes -->
   <div
     class="mt-6"
@@ -83,6 +83,7 @@ exports[`CreateNewGroup elements rendering renders correctly 1`] = `
   >
     <label
       class="block mb-2 text-sm font-medium text-gray-900 dark:text-gray-300"
+      id="positionLabel"
     >
       By/Sted
     </label>
diff --git a/tests/unit/component-tests/user-component-tests/__snapshots__/login-form.spec.js.snap b/tests/unit/component-tests/user-component-tests/__snapshots__/login-form.spec.js.snap
index 96f0eb7..bdec3ea 100644
--- a/tests/unit/component-tests/user-component-tests/__snapshots__/login-form.spec.js.snap
+++ b/tests/unit/component-tests/user-component-tests/__snapshots__/login-form.spec.js.snap
@@ -7,11 +7,11 @@ exports[`LoginForm component renders correctly 1`] = `
   <div
     class="px-6 py-4 mt-4"
   >
-    <h3
-      class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
+    <div
+      class="text-xl md:text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
     >
        Logg på 
-    </h3>
+    </div>
     <div>
       <div
         class="w-full mt-6"
diff --git a/tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap b/tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap
index 4ffdec4..98a0bdc 100644
--- a/tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap
+++ b/tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap
@@ -4,11 +4,12 @@ exports[`RegisterFormComponent renders correctly 1`] = `
 <div
   class="w-full max-w-md mx-auto mb-auto md:ring-1 ring-gray-300 overflow-hidden rounded-xl p-4"
 >
-  <h3
-    class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
+  <div
+    class="text-xl md:text-2xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
+    id="registerLabel"
   >
-     Opprett ny bruker 
-  </h3>
+     Opprett ny konto 
+  </div>
   <form>
     <div
       class="grid grid-cols-1 gap-6 mt-4"
@@ -87,7 +88,7 @@ exports[`RegisterFormComponent renders correctly 1`] = `
       <button
         class="block text-white bg-primary-medium hover:bg-primary-dark focus:ring-4 focus:outline-none focus:ring-primary-light font-medium rounded-lg text-sm px-5 py-2.5 text-center dark:bg-primary-medium dark:hover:bg-primary-dark dark:focus:ring-primary-light"
       >
-        Lagre
+        Opprett
       </button>
     </div>
   </form>
-- 
GitLab