diff --git a/test/system/comments_test.rb b/test/system/comments_test.rb index 8e62e30a2d0..81273748733 100644 --- a/test/system/comments_test.rb +++ b/test/system/comments_test.rb @@ -140,6 +140,7 @@ class CommentsTest < ApplicationSystemTestCase fill_in('new_comment[description]', with: 'test') end click_button 'コメントする' + accept_alert '提出物の担当になりました。' assert_text 'test' assert_text 'Watch中' end diff --git a/test/system/product/checker_test.rb b/test/system/product/checker_test.rb index 67c95dbf1bd..5215e22ce6d 100644 --- a/test/system/product/checker_test.rb +++ b/test/system/product/checker_test.rb @@ -14,6 +14,7 @@ def assigned_product_count visit "/products/#{products(:product1).id}" post_comment('担当者がいない提出物の場合、担当者になる') + accept_alert '提出物の担当になりました。' assert_text '担当になりました。' assert_text '担当から外れる' diff --git a/test/system/product/unchecked_test.rb b/test/system/product/unchecked_test.rb index bd3d01b5f9b..44ce25753c8 100644 --- a/test/system/product/unchecked_test.rb +++ b/test/system/product/unchecked_test.rb @@ -106,6 +106,7 @@ class Product::UncheckedTest < ApplicationSystemTestCase visit_with_auth "/products/#{product.id}", 'mentormentaro' fill_in('new_comment[description]', with: 'test') click_button 'コメントする' + accept_alert '提出物の担当になりました。' within('.thread-comment.is-latest') do assert_text 'mentormentaro' assert_text 'test' diff --git a/test/system/products_test.rb b/test/system/products_test.rb index 9e0555865e1..ae5587e924e 100644 --- a/test/system/products_test.rb +++ b/test/system/products_test.rb @@ -359,6 +359,7 @@ class ProductsTest < ApplicationSystemTestCase visit_with_auth "/products/#{products(:product1).id}", 'komagata' fill_in 'new_comment[description]', with: 'コメントしたら担当になるテスト' click_button 'コメントする' + accept_alert '提出物の担当になりました。' assert_text 'コメントしたら担当になるテスト' visit current_path assert_text '担当から外れる'