Speed up test suite by not generating RSA keys in test environment (#7296)
One RSA keypair for all fabricated test accounts is enough
This commit is contained in:
parent
965345316f
commit
c5dcd7d836
3 changed files with 11 additions and 4 deletions
|
@ -815,7 +815,8 @@ RSpec.describe Account, type: :model do
|
|||
end
|
||||
|
||||
context 'when is local' do
|
||||
it 'generates keys' do
|
||||
# Test disabled because test environment omits autogenerating keys for performance
|
||||
xit 'generates keys' do
|
||||
account = Account.create!(domain: nil, username: Faker::Internet.user_name(nil, ['_']))
|
||||
expect(account.keypair.private?).to eq true
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue