diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-05 15:28:58 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-05 16:14:51 -0600 |
| commit | 60ac0f2df85e4e4655b96b358dcc1ba40fe61a3e (patch) | |
| tree | 426602110fc42533d35b12c4a24557510faa4b95 /spec/support | |
| parent | 8e427c7987e90a028e6d9f344a9f70bb13b6eee4 (diff) | |
Specify npm cafile setting
* [cafile](https://docs.npmjs.com/using-npm/config#cafile)
* Use host network for development scripts
* Specify path to JAVA keystore in list command
* Add CHANGELOG entry
Diffstat (limited to 'spec/support')
| -rw-r--r-- | spec/support/integration_test_helper.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/support/integration_test_helper.rb b/spec/support/integration_test_helper.rb index b25297c..ead30d4 100644 --- a/spec/support/integration_test_helper.rb +++ b/spec/support/integration_test_helper.rb @@ -86,6 +86,12 @@ module IntegrationTestHelper end end + def private_npm_host + @private_npm_host ||= ENV.fetch('PRIVATE_NPM_HOST').tap do |host| + add_host(host, ENV.fetch('PRIVATE_NPM_IP')) + end + end + def private_pypi_host @private_pypi_host ||= ENV.fetch('PRIVATE_PYPI_HOST').tap do |host| add_host(host, ENV.fetch('PRIVATE_PYPI_IP')) |
