Skip to content

Commit

Permalink
提出物にコメントがされた際に最終コメントが更新されるか検証するテストを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
Daichi831 committed Aug 18, 2021
1 parent da0fc9c commit f7a9190
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions test/system/comments_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -232,4 +232,29 @@ class CommentsTest < ApplicationSystemTestCase
find('#js-new-comment').set('@')
assert_selector 'span.mention', text: 'mentor'
end

test 'show last comment at' do
# メンターがコメントする
visit_with_auth "/products/#{products(:product2).id}", 'komagata'
within('.thread-comment-form__form') do
fill_in('new_comment[description]', with: 'メンターがコメント')
end
click_button 'コメントする'
wait_for_vuejs
assert_text 'メンターがコメント'
# 最終コメントがメンターであることを確認
visit current_url
assert_text '最終コメント(メンター)'
# 提出者がコメントする
visit_with_auth "/products/#{products(:product2).id}", 'kimura'
within('.thread-comment-form__form') do
fill_in('new_comment[description]', with: '提出者がコメント')
end
click_button 'コメントする'
wait_for_vuejs
assert_text '提出者がコメント'
# 最終コメントが提出者であることを確認
visit current_url
assert_text '最終コメント(提出者)'
end
end

0 comments on commit f7a9190

Please sign in to comment.