Clear blacklist after tests

This commit is contained in:
MICHAEL JACKSON
2017-11-14 16:46:59 -08:00
parent 4b3f606d7d
commit 4e31fd02cf
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,7 @@
const BlacklistAPI = require('../../BlacklistAPI')
function clearBlacklist(done) {
BlacklistAPI.removeAllPackages().then(done, done)
}
module.exports = clearBlacklist