0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/test/unit/config_def.js

10 lines
238 B
JavaScript
Raw Normal View History

2017-04-19 14:15:28 -05:00
'use strict';
describe('config.yaml', function() {
it('should be parseable', function() {
2017-04-19 14:15:28 -05:00
let source = require('fs').readFileSync(__dirname + '/../../conf/default.yaml', 'utf8');
require('js-yaml').safeLoad(source);
});
});