diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-19 11:42:07 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-19 11:42:07 -0600 |
| commit | 0f1db0d60c61a6db1c5389fc0ddb2d984789b330 (patch) | |
| tree | 0a93685e673cf43b8c61ad9e251a1722f5460796 /spec | |
| parent | ea84a8f5badf153744486c51a75b1f492763fdfd (diff) | |
Add --allow-root option to install step
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/integration/js/bower_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/integration/js/bower_spec.rb b/spec/integration/js/bower_spec.rb index 68ab12d..b72f256 100644 --- a/spec/integration/js/bower_spec.rb +++ b/spec/integration/js/bower_spec.rb @@ -10,9 +10,9 @@ RSpec.describe "bower" do specify { expect(subject).to match_schema(version: '2.0') } specify { expect(subject.dependency_names).to match_array(['cli', 'jquery', 'masonry-layout', 'stimulus.umd']) } - specify { expect(subject.licenses_for('cli')).to match_array(['Artistic-2.0']) } + specify { expect(subject.licenses_for('cli')).to match_array(['Apache-2.0', 'BSD-3-Clause', 'ISC', 'MIT']) } specify { expect(subject.licenses_for('jquery')).to match_array(['MIT']) } specify { expect(subject.licenses_for('masonry-layout')).to match_array(['MIT']) } - specify { expect(subject.licenses_for('stimulus.umd')).to match_array(['MIT']) } + specify { expect(subject.licenses_for('stimulus.umd')).to match_array(['unknown']) } end end |
