mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-23 22:27:34 -05:00
9 lines
238 B
JavaScript
9 lines
238 B
JavaScript
'use strict';
|
|
|
|
describe('config.yaml', function() {
|
|
it('should be parseable', function() {
|
|
let source = require('fs').readFileSync(__dirname + '/../../conf/default.yaml', 'utf8');
|
|
require('js-yaml').safeLoad(source);
|
|
});
|
|
});
|
|
|