diff --git a/web/spec/features/create_session_flow_spec.rb b/web/spec/features/create_session_flow_spec.rb index 7f18252da..60f1a82d8 100644 --- a/web/spec/features/create_session_flow_spec.rb +++ b/web/spec/features/create_session_flow_spec.rb @@ -49,6 +49,7 @@ describe "Create Session Flow", :js => true, :type => :feature, :capybara_featur find('.recurring-mode-list-holder .easydropdown') # by selecting this time, the end-time-list should auto-select to 6:30PM + # Out for the time being; because the contents of the dropdown is based on the current time #jk_select('05:30 PM', '#start-time-list') #find('.end-time-list-holder .selected', text: '06:30 PM') end diff --git a/web/spec/requests/music_sessions_api_spec.rb b/web/spec/requests/music_sessions_api_spec.rb index ba172afbb..2a58c5eed 100644 --- a/web/spec/requests/music_sessions_api_spec.rb +++ b/web/spec/requests/music_sessions_api_spec.rb @@ -62,7 +62,7 @@ describe "Scheduled Music Session API ", :type => :api do last_response.status.should eql(200) music_sessions = JSON.parse(last_response.body) - music_sessions.count.should eql(2) + music_sessions.count.should eql(3) expect(Time.parse(music_sessions[0]["scheduled_start"]).to_i).to be < Time.parse(music_sessions[1]["scheduled_start"]).to_i end