From ce525f4453894c9c7f9faf08a2dabb6a6f943f28 Mon Sep 17 00:00:00 2001
From: Titus Kristiansen <titusk@stud.ntnu.no>
Date: Mon, 2 May 2022 11:09:38 +0200
Subject: [PATCH] Delete register-user-component.spec.js.snap

---
 .../register-user-component.spec.js.snap      | 95 -------------------
 1 file changed, 95 deletions(-)
 delete mode 100644 tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap

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
deleted file mode 100644
index 5dc934f..0000000
--- a/tests/unit/component-tests/user-component-tests/__snapshots__/register-user-component.spec.js.snap
+++ /dev/null
@@ -1,95 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`RegisterFormComponent renders correctly 1`] = `
-<div
-  class="w-full max-w-md m-auto md:ring-1 ring-gray-300 overflow-hidden rounded-xl mt-[10%] p-4"
->
-  <h3
-    class="text-xl font-medium text-center text-gray-600 dark:text-gray-200 mt-4 mb-8"
-  >
-     Opprett ny bruker 
-  </h3>
-  <form>
-    <div
-      class="grid grid-cols-1 gap-6 mt-4"
-    >
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          id="email"
-          placeholder="E-post adresse"
-          type="email"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          id="password"
-          placeholder="Passord"
-          type="password"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          id="confirmPassword"
-          placeholder="Bekreft passord"
-          type="password"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          data-test="firstNameTest"
-          id="firstName"
-          placeholder="Fornavn"
-          type="text"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          id="lastName"
-          placeholder="Etternavn"
-          type="text"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-      <div>
-        <input
-          class="block w-full px-4 py-2 mt-2 text-gray-700 placeholder-gray-500 bg-white border rounded-md dark:bg-gray-800 dark:border-gray-600 dark:placeholder-gray-400 focus:border-primary-light dark:focus:border-primary-light focus:ring-opacity-40 focus:outline-none focus:ring focus:ring-primary-light"
-          id="address"
-          placeholder="Adresse"
-          type="text"
-        />
-        <!-- error message -->
-        
-        
-      </div>
-    </div>
-    <div
-      class="flex justify-end mt-6"
-    >
-      <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
-      </button>
-    </div>
-  </form>
-</div>
-`;
-- 
GitLab