0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed db export test

This commit is contained in:
Nazar Gargol 2019-11-06 15:52:27 +07:00 committed by Naz Gargol
parent 9d10f3b3b8
commit 59153394c3

View file

@ -55,7 +55,7 @@ describe('DB API', function () {
const jsonResponse = res.body;
should.exist(jsonResponse.db);
jsonResponse.db.should.have.length(1);
Object.keys(jsonResponse.db[0].data).length.should.eql(27);
Object.keys(jsonResponse.db[0].data).length.should.eql(28);
});
});