Skip to content
This repository has been archived by the owner on Oct 24, 2024. It is now read-only.

Commit

Permalink
🎁 Comment out specs which require registerable
Browse files Browse the repository at this point in the history
  • Loading branch information
laritakr committed Jul 11, 2023
1 parent 4417220 commit fa23e70
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion spec/controllers/hyku/registrations_controller_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

RSpec.describe Hyku::RegistrationsController, type: :controller do
# Turn off spec temporarily due to removing registerable
# ref https://github.com/scientist-softserv/adventist-dl/pull/493
RSpec.xdescribe Hyku::RegistrationsController, type: :controller do
before do
allow(Settings.devise).to receive(:account_signup).and_return(account_signup_enabled)
# Recommended by Devise: https://github.com/plataformatec/devise/wiki/How-To:-Test-controllers-with-Rails-3-and-4-%28and-RSpec%29
Expand Down
4 changes: 3 additions & 1 deletion spec/requests/institution_visibility_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

RSpec.describe 'Insitution visiblity work access', type: :request, clean: true, multitenant: true do
# Turn off spec temporarily due to removing registerable
# ref https://github.com/scientist-softserv/adventist-dl/pull/493
RSpec.xdescribe 'Insitution visiblity work access', type: :request, clean: true, multitenant: true do
let(:account) { create(:account) }
let(:account2) { create(:account) }
let(:tenant_user_attributes) { attributes_for(:user) }
Expand Down
4 changes: 3 additions & 1 deletion spec/views/_user_util_links.html.erb_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# frozen_string_literal: true

RSpec.describe '/_user_util_links.html.erb', type: :view do
# Turn off spec temporarily due to removing registerable
# ref https://github.com/scientist-softserv/adventist-dl/pull/493
RSpec.xdescribe '/_user_util_links.html.erb', type: :view do
let(:user) { create(:user) }

before do
Expand Down

0 comments on commit fa23e70

Please sign in to comment.