Skip to content

Commit bdf8427

Browse files
authored
Fix tests (#270)
1 parent 38dcf19 commit bdf8427

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/features/saml_authentication_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@
208208
fill_in "Email", with: "[email protected]"
209209
fill_in "Password", with: "asdf"
210210
click_on "Sign in"
211-
expect(page).to have_content(:all, "Example Domain This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.")
211+
expect(page).to have_content(:all, "Example Domain")
212212
expect(current_url).to eq("https://www.example.com/")
213213
end
214214
end

spec/support/rails_app.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def app_ready?(pid, port)
2121

2222
def create_app(name, env = {})
2323
puts "[#{name}] Creating Rails app"
24-
rails_new_options = %w[-A -G -C -T -J -S --skip-spring --skip-listen --skip-bootsnap --skip-action-mailbox --skip-jbuilder --skip-active-storage]
24+
rails_new_options = %w[-A -G -C -T -J -S --skip-action-mailbox --skip-active-storage --skip-bootsnap --skip-brakeman --skip-ci --skip-dev-gems --skip-jbuilder --skip-kamal --skip-listen --skip-rubocop --skip-solid --skip-spring --skip-thruster]
2525
rails_new_options << "-O" if name == "idp"
2626
env.merge!("RUBY_SAML_VERSION" => OneLogin::RubySaml::VERSION)
2727
Dir.chdir(working_directory) do

0 commit comments

Comments
 (0)