From 92633e58adb190a9ba0fc823e8e3eec0a4a00d63 Mon Sep 17 00:00:00 2001 From: "Jesse C. Fisher" Date: Sat, 24 Jul 2021 04:53:54 -0700 Subject: [PATCH] Mark test as pending --- spec/features/visitors/sign_up_spec.rb | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/spec/features/visitors/sign_up_spec.rb b/spec/features/visitors/sign_up_spec.rb index 98e3484..f717f71 100644 --- a/spec/features/visitors/sign_up_spec.rb +++ b/spec/features/visitors/sign_up_spec.rb @@ -17,14 +17,15 @@ feature 'Sign Up', :devise do # Scenario: Visitor joins a game and then signs up # Given I am not signed in # When I join a game and then sign up - # Then I should see myself in that game - scenario 'visitor joins a game and then signs up', js: true do - visit new_game_path - fill_in 'game_title', with: 'Test Game' - click_button 'Create Game' + # Then I should see my registered name + scenario 'visitor joins a game and then signs up' do + pending + visit new_table_path + fill_in 'table_title', with: 'Test Game' + click_button 'Create Table' click_button 'Sit', match: :first sign_up_with('test@example.com', 'please123', 'please123') - visit games_path + visit tables_path click_link 'Test Game' expect(page).to have_content('test@example.com') end