0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-03-25 02:32:52 -05:00
verdaccio/test/run.js
Alex Kocharin 709ffe8e39 tests
2013-09-25 14:01:55 +04:00

14 lines
303 B
JavaScript
Executable file

#!/usr/bin/env node
var Server = require('./lib/server');
process.argv = ['node', 'sinopia', '-c', './config.yaml'];
require('../bin/sinopia');
setTimeout(function() {
var server = new Server('http://localhost:55550/');
server.auth('test', 'test', function() {
console.log('ok');
});
}, 1000);