1
0
Fork 0

fix cleanup

This commit is contained in:
Wilfried Goesgens 2017-09-12 10:11:05 +02:00
parent afafc47eac
commit e396681fb8
1 changed files with 5 additions and 1 deletions

View File

@ -56,6 +56,10 @@ describe('_api/gharial', () => {
db._drop(oColName);
} catch (e) {
}
try {
db._drop(oColName2);
} catch (e) {
}
try {
db._graphs.remove(graphName);
} catch (e) {
@ -91,7 +95,7 @@ describe('_api/gharial', () => {
req = request.get(url + "/" + graphName);
} while (req.statusCode !== 200);
expect(db._collection(eColName)).to.not.be.null;
expect(db._collection(eColName)).to.not.be.null;
expect(db._collection(vColName)).to.not.be.null;
});