diff --git a/test/proptrackr_web/controllers/user_controller_test.exs b/test/proptrackr_web/controllers/user_controller_test.exs
index dc5804c862f5a35299800b5156124e66bca5f941..db835cf2453af0945eb0c71bfe54c9ad0e36ae80 100644
--- a/test/proptrackr_web/controllers/user_controller_test.exs
+++ b/test/proptrackr_web/controllers/user_controller_test.exs
@@ -29,6 +29,8 @@ defmodule PropTrackrWeb.UserControllerTest do
     assert html_response(conn, 200) =~ "Passwords do not match."
   end
 
+  # TODO(Kerdo): Reintroduce this test when re-enabling already existing email constraint
+  @tag :skip
   test "AC4: user sees an error if an account with the same email exists", %{conn: conn, user_params: user_params} do
     Repo.insert!(%User{email: user_params[:email], password: "test123"})
     conn = post(conn, "/register", user: user_params)