clear the snapshot repos after every doc

This commit is contained in:
Spencer Alger
2015-07-02 13:04:27 -07:00
parent c1f584cd3e
commit 863cb7a61c
4 changed files with 36 additions and 18 deletions

View File

@ -29,8 +29,8 @@ function YamlFile(filename, docs) {
}
});
afterEach(/* doc */function (done) {
clientManager.get().clearEs(done);
afterEach(/* doc */function () {
return clientManager.get().clearEs();
});
});