Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove :clean param from some feature specs #901

Open
wants to merge 1 commit into
base: primary
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions spec/features/advanced_search_spec.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
# frozen_string_literal: true
RSpec.feature 'Advanced search form', :clean, :js do
before do
# add some stuff to the index
end

RSpec.feature 'Advanced search form' do
scenario 'the advanced search form' do
visit '/advanced'

Expand Down
2 changes: 1 addition & 1 deletion spec/features/create_image_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

RSpec.feature 'Create an Image', :clean, :js do
RSpec.feature 'Create an Image', :js do
before do
stub_request(:get, subject_uri)
# Only enqueue the ingest job, not charactarization.
Expand Down
2 changes: 1 addition & 1 deletion spec/features/create_publication_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
RSpec.feature 'Create a Publication', :clean, :js do
RSpec.feature 'Create a Publication', :js do
before do
stub_request(:get, subject_uri)
# Only enqueue the ingest job, not charactarization.
Expand Down
2 changes: 1 addition & 1 deletion spec/features/create_student_work_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true
RSpec.feature 'Create a StudentWork', :clean, :js do
RSpec.feature 'Create a StudentWork', :js do
before do
stub_request(:get, subject_uri)

Expand Down