mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
fix(flow): done does not accept arguments
This commit is contained in:
parent
e4a21839d4
commit
181ea648fa
1 changed files with 5 additions and 3 deletions
|
@ -69,10 +69,12 @@ describe('functional test verdaccio', function() {
|
|||
express.start(EXPRESS_PORT).then((app) =>{
|
||||
done();
|
||||
}, (err) => {
|
||||
done(err);
|
||||
console.error(err);
|
||||
done();
|
||||
});
|
||||
}).catch((error) => {
|
||||
done(error);
|
||||
}).catch((err) => {
|
||||
console.error(err);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue