Fixed db export regression tests

no issue

- We excluded `mobiledoc_revisions` table from exports in this commit - ff1ac49b0a
This commit is contained in:
Rish 2019-08-13 09:39:53 +05:30
parent 19100ec5e6
commit daed29e185
2 changed files with 2 additions and 2 deletions

View File

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

View File

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