mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
17 lines
402 B
JavaScript
17 lines
402 B
JavaScript
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const config_hash = require('./partials/config');
|
|
const Config = require('../../lib/config');
|
|
|
|
|
|
describe('Config', function() {
|
|
before(function() {
|
|
this.config = new Config(config_hash);
|
|
});
|
|
|
|
it('npmjs uplink should have a default cache option that is true', function() {
|
|
assert.equal(this.config.uplinks['npmjs'].cache, true);
|
|
});
|
|
});
|
|
|