summaryrefslogtreecommitdiff
path: root/spec/integration
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-09-14 13:00:02 -0600
committermo khan <mo.khan@gmail.com>2020-09-14 13:00:02 -0600
commitb9f82cd57910e02bbe6cf5bd6ae36b28eb7b0e83 (patch)
treeda237f56e253cfab2496da7f06d2f43784a76fa3 /spec/integration
parente1ee307c4859c0f5311e1e611bc06970cae4a2a4 (diff)
fix: export NODE_EXTRA_CA_CERTSv3.25.6
Diffstat (limited to 'spec/integration')
-rw-r--r--spec/integration/js/bower_spec.rb12
1 files changed, 7 insertions, 5 deletions
diff --git a/spec/integration/js/bower_spec.rb b/spec/integration/js/bower_spec.rb
index 720bdf8..d49353c 100644
--- a/spec/integration/js/bower_spec.rb
+++ b/spec/integration/js/bower_spec.rb
@@ -43,11 +43,13 @@ RSpec.describe "bower" do
end
end
- specify { expect(subject).to match_schema }
- specify { expect(subject.dependency_names).to match_array(%w[debug js-bower lodash]) }
- specify { expect(subject.licenses_for('debug')).to match_array(['unknown']) }
- specify { expect(subject.licenses_for('js-bower')).to match_array(['ISC']) }
- specify { expect(subject.licenses_for('lodash')).to match_array(['MIT']) }
+ specify do
+ expect(subject).to match_schema
+ expect(subject.dependency_names).to match_array(%w[debug js-bower lodash])
+ expect(subject.licenses_for('debug')).to match_array(['unknown'])
+ expect(subject.licenses_for('js-bower')).to match_array(['ISC'])
+ expect(subject.licenses_for('lodash')).to match_array(['MIT'])
+ end
end
[