Added debug output for travis

This commit is contained in:
Lukas Metzger 2018-03-23 19:43:43 +01:00
parent a573a7813e
commit e95f520afa

View file

@ -52,6 +52,8 @@ async function logIn(assert, req) {
}
});
console.log(res);
assert.equal(res.status, 201, 'LOGIN: Status not valid');
assert.equal(res.data.username, 'admin', 'LOGIN: Username should be admin');
assert.equal(res.data.token.length, 86, 'LOGIN: Token length fail');