Upgrade node and deps

This commit is contained in:
Jonathan Cremin 2020-04-28 20:31:28 +01:00
parent 2bd6711175
commit 20fcbe40ac
5 changed files with 32 additions and 34 deletions

View file

@ -27,7 +27,10 @@ describe('hostr-web user', function() {
.send({'email': 'test@hostr.co', 'password': 'test-password', '_csrf': csrf})
.expect(302)
.expect('Location', '/')
.end();
.end(function() {
// Hax
process.exit();
});
});
});
});