Browse Source

preventing failure (#666)

pull/667/head
J G 3 years ago committed by GitHub
parent
commit
c234cac124
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      spec/helpers/tab_nav_helper_spec.rb

2
spec/helpers/tab_nav_helper_spec.rb

@ -3,7 +3,7 @@ require "rails_helper"
RSpec.describe TabNavHelper do RSpec.describe TabNavHelper do
let(:organisation) { FactoryBot.create(:organisation) } let(:organisation) { FactoryBot.create(:organisation) }
let(:user) { FactoryBot.build(:user, organisation:) } let(:user) { FactoryBot.build(:user, organisation:) }
let(:scheme) { FactoryBot.build(:scheme) } let(:scheme) { FactoryBot.build(:scheme, service_name: "Some name") }
describe "#user_cell" do describe "#user_cell" do
it "returns user link and email separated by a newline character" do it "returns user link and email separated by a newline character" do

Loading…
Cancel
Save