Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit fc17d57

Browse files
committed
chore: clean up wip tags
1 parent c7eaaf6 commit fc17d57

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

test/groupher_server/cms/comments/blog_comment_test.exs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ defmodule GroupherServer.Test.CMS.Comments.BlogComment do
229229
end
230230

231231
describe "[article comment fold/unfold]" do
232-
@tag :wip
233232
test "user can fold a comment", ~m(user blog)a do
234233
{:ok, comment} = CMS.create_comment(:blog, blog.id, mock_comment(), user)
235234
{:ok, comment} = ORM.find(Comment, comment.id)
@@ -244,7 +243,6 @@ defmodule GroupherServer.Test.CMS.Comments.BlogComment do
244243
assert blog.meta.folded_comment_count == 1
245244
end
246245

247-
@tag :wip
248246
test "user can unfold a comment", ~m(user blog)a do
249247
{:ok, comment} = CMS.create_comment(:blog, blog.id, mock_comment(), user)
250248
{:ok, _comment} = CMS.fold_comment(comment.id, user)

test/groupher_server/cms/comments/job_comment_test.exs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ defmodule GroupherServer.Test.CMS.Comments.JobComment do
229229
end
230230

231231
describe "[article comment fold/unfold]" do
232-
@tag :wip
233232
test "user can fold a comment", ~m(user job)a do
234233
{:ok, comment} = CMS.create_comment(:job, job.id, mock_comment(), user)
235234
{:ok, comment} = ORM.find(Comment, comment.id)
@@ -244,7 +243,6 @@ defmodule GroupherServer.Test.CMS.Comments.JobComment do
244243
assert job.meta.folded_comment_count == 1
245244
end
246245

247-
@tag :wip
248246
test "user can unfold a comment", ~m(user job)a do
249247
{:ok, comment} = CMS.create_comment(:job, job.id, mock_comment(), user)
250248
{:ok, _comment} = CMS.fold_comment(comment.id, user)

test/groupher_server/cms/comments/post_comment_test.exs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ defmodule GroupherServer.Test.CMS.Comments.PostComment do
229229
end
230230

231231
describe "[article comment fold/unfold]" do
232-
@tag :wip
233232
test "user can fold a comment", ~m(user post)a do
234233
{:ok, comment} = CMS.create_comment(:post, post.id, mock_comment(), user)
235234
{:ok, comment} = ORM.find(Comment, comment.id)
@@ -244,7 +243,6 @@ defmodule GroupherServer.Test.CMS.Comments.PostComment do
244243
assert post.meta.folded_comment_count == 1
245244
end
246245

247-
@tag :wip
248246
test "user can unfold a comment", ~m(user post)a do
249247
{:ok, comment} = CMS.create_comment(:post, post.id, mock_comment(), user)
250248
{:ok, _comment} = CMS.fold_comment(comment.id, user)

test/groupher_server/cms/comments/repo_comment_test.exs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,6 @@ defmodule GroupherServer.Test.CMS.Comments.RepoComment do
229229
end
230230

231231
describe "[article comment fold/unfold]" do
232-
@tag :wip
233232
test "user can fold a comment", ~m(user repo)a do
234233
{:ok, comment} = CMS.create_comment(:repo, repo.id, mock_comment(), user)
235234
{:ok, comment} = ORM.find(Comment, comment.id)
@@ -244,7 +243,6 @@ defmodule GroupherServer.Test.CMS.Comments.RepoComment do
244243
assert repo.meta.folded_comment_count == 1
245244
end
246245

247-
@tag :wip
248246
test "user can unfold a comment", ~m(user repo)a do
249247
{:ok, comment} = CMS.create_comment(:repo, repo.id, mock_comment(), user)
250248
{:ok, _comment} = CMS.fold_comment(comment.id, user)

0 commit comments

Comments
 (0)