Skip to content

Commit

Permalink
Unskip survey links tests
Browse files Browse the repository at this point in the history
They were already working - not sure when they were fixed but that's
fine.

See #2350
  • Loading branch information
matiasgarciaisaia committed Nov 13, 2024
1 parent cc88a7f commit 06aad77
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions test/ask_web/controllers/survey_link_controller_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
assert [] == ShortLink |> Repo.all()
end

@tag :skip
test "incentives link generation", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -110,7 +109,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
assert [] == ShortLink |> Repo.all()
end

@tag :skip
test "interactions link generation", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -158,7 +156,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
assert [] == ShortLink |> Repo.all()
end

@tag :skip
test "disposition_history link generation", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -362,7 +359,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
end
end

@tag :skip
test "allows editors to create some links", %{conn: conn, user: user} do
project = create_project_for_user(user, level: "editor")
survey = insert(:survey, project: project)
Expand All @@ -387,7 +383,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
end
end

@tag :skip
test "allows editors to refresh some links", %{conn: conn, user: user} do
project = create_project_for_user(user, level: "editor")
survey = insert(:survey, project: project)
Expand All @@ -414,7 +409,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
end
end

@tag :skip
test "forbids editor to delete some links", %{conn: conn, user: user} do
project = create_project_for_user(user, level: "editor")
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -501,7 +495,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
})
end

@tag :skip
test "generates logs for incentives link", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -552,7 +545,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
})
end

@tag :skip
test "generates logs for interactions link", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down Expand Up @@ -603,7 +595,6 @@ defmodule AskWeb.SurveyLinkControllerTest do
})
end

@tag :skip
test "generates logs for disposition_history link", %{conn: conn, user: user} do
project = create_project_for_user(user)
survey = insert(:survey, project: project)
Expand Down

0 comments on commit 06aad77

Please sign in to comment.