Remove manual spec retries

pull/3626/head
Stefan Botzenhart 9 years ago
parent a8cc5687cf
commit 89c982f003
  1. 2
      spec/features/work_packages/details/inplace_editor/description_editor_spec.rb
  2. 2
      spec/features/work_packages/details/inplace_editor/subject_editor_spec.rb
  3. 2
      spec/features/work_packages/navigation_spec.rb
  4. 2
      spec/features/work_packages/select_work_package_row_spec.rb
  5. 2
      spec/lib/acts_as_watchable/lib/acts_as_watchable/routes_spec.rb
  6. 2
      spec/models/principal_spec.rb

@ -4,7 +4,7 @@ require 'features/work_packages/shared_contexts'
require 'features/work_packages/details/inplace_editor/work_package_field'
require 'features/work_packages/work_packages_page'
describe 'description inplace editor', js: true, retry: 3, retry_wait: 5 do
describe 'description inplace editor', js: true do
include_context 'maximized window'
let(:project) { FactoryGirl.create :project_with_types, is_public: true }

@ -4,7 +4,7 @@ require 'features/work_packages/shared_contexts'
require 'features/work_packages/details/inplace_editor/work_package_field'
require 'features/work_packages/work_packages_page'
describe 'subject inplace editor', js: true, retry: 3, retry_wait: 5 do
describe 'subject inplace editor', js: true do
include_context 'maximized window'
let(:project) { FactoryGirl.create :project_with_types, is_public: true }

@ -38,7 +38,7 @@ RSpec.feature 'Work package navigation' do
login_as(user)
end
scenario 'all different angular based work package views', js: true, retry: 3, retry_wait: 5 do
scenario 'all different angular based work package views', js: true do
# deep link global work package index
global_work_packages = Pages::WorkPackagesTable.new
global_work_packages.visit!

@ -29,7 +29,7 @@
require 'spec_helper'
require 'features/work_packages/work_packages_page'
describe 'Select work package row', type: :feature, retry: 3, retry_wait: 5 do
describe 'Select work package row', type: :feature do
let(:user) { FactoryGirl.create(:admin) }
let(:project) { FactoryGirl.create(:project) }
let(:work_package_1) { FactoryGirl.create(:work_package, project: project) }

@ -37,7 +37,7 @@ describe OpenProject::Acts::Watchable::Routes do
end.new(type, id)
}
describe 'matches?', retry: 3, retry_wait: 10 do
describe 'matches?' do
shared_examples_for 'watched model' do
describe 'for a valid id string' do
let(:id) { '1' }

@ -28,7 +28,7 @@
require 'spec_helper'
describe Principal, type: :model, retry: 3, retry_wait: 5 do
describe Principal, type: :model do
let(:user) { FactoryGirl.build(:user) }
let(:group) { FactoryGirl.build(:group) }

Loading…
Cancel
Save