mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-03 23:09:17 -05:00
fix hostname for travis
This commit is contained in:
parent
862b1eeed4
commit
91ee928f06
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ describe('Func', function() {
|
||||||
async.map([server, server2], function(server, cb) {
|
async.map([server, server2], function(server, cb) {
|
||||||
exec('lsof -p ' + Number(server.pid), function(err, result) {
|
exec('lsof -p ' + Number(server.pid), function(err, result) {
|
||||||
assert.equal(server.fdlist, result.split('\n').filter(function(q) {
|
assert.equal(server.fdlist, result.split('\n').filter(function(q) {
|
||||||
if (q.match(/TCP localhost:55551->localhost:\d+ \(ESTABLISHED\)/)) return false;
|
if (q.match(/TCP .*->.* \(ESTABLISHED\)/)) return false;
|
||||||
if (q.match(/\/libcrypt-[^\/]+\.so/)) return false;
|
if (q.match(/\/libcrypt-[^\/]+\.so/)) return false;
|
||||||
if (q.match(/\/node_modules\/crypt3\/build\/Release/)) return false;
|
if (q.match(/\/node_modules\/crypt3\/build\/Release/)) return false;
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue