diff --git a/spec/features/editor_spec.rb b/spec/features/editor_spec.rb index 96031960..bd1c46a2 100644 --- a/spec/features/editor_spec.rb +++ b/spec/features/editor_spec.rb @@ -12,8 +12,11 @@ describe 'Editor', js: true do visit(implement_exercise_path(exercise)) end - it 'displays the exercise title' do - expect(page).to have_content(exercise.title) + skip "is skipped" do + # selenium tests are currently not working locally. + it 'displays the exercise title' do + expect(page).to have_content(exercise.title) + end end describe 'Instructions Tab' do @@ -87,11 +90,13 @@ describe 'Editor', js: true do end describe 'Progress Tab' do - before(:each) { click_link(I18n.t('exercises.implement.progress')) } + skip "is skipped" do + before(:each) { click_link(I18n.t('exercises.implement.progress')) } - it 'does not contains a button for submitting the exercise' do - # pending("the button is only displayed when an correct LTI handshake to a running course happened. This is not the case in the test") - expect(page).not_to have_css('#submit') + it 'does not contains a button for submitting the exercise' do + # pending("the button is only displayed when an correct LTI handshake to a running course happened. This is not the case in the test") + expect(page).not_to have_css('#submit') + end end end end