1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/config.js
2017-06-08 17:59:28 +02:00

18 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);
});
});