0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-02-17 23:45:29 -05:00
verdaccio/test/config.js

14 lines
293 B
JavaScript
Raw Normal View History

2013-12-13 18:00:46 +04:00
var assert = require('assert')
, ex = module.exports
ex['trying to fetch non-existent package'] = function(cb) {
2013-12-13 18:00:46 +04:00
var f = fork('../bin/sinopia', ['-c', './config/log-1.yaml'], {silent: true})
f.on('message', function(msg) {
if ('sinopia_started' in msg) {
2013-12-13 18:00:46 +04:00
f.kill()
cb()
}
2013-12-13 18:00:46 +04:00
})
}