2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'User activates Packagist' do
|
2020-04-22 19:07:51 +05:30
|
|
|
include_context 'project service activation'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
before do
|
2020-04-22 19:07:51 +05:30
|
|
|
stub_request(:post, /.*packagist.org.*/)
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
it 'activates service', :js do
|
|
|
|
visit_project_integration('Packagist')
|
2018-03-17 18:26:18 +05:30
|
|
|
fill_in('Username', with: 'theUser')
|
|
|
|
fill_in('Token', with: 'verySecret')
|
2020-04-22 19:07:51 +05:30
|
|
|
|
|
|
|
click_test_then_save_integration
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(page).to have_content('Packagist settings saved and active.')
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|