remove badge after setBadgeCount test finishes

This commit is contained in:
Zeke Sikelianos 2016-10-05 21:38:09 -07:00
parent 45d9cc6405
commit 156d823b7f

View file

@ -285,6 +285,7 @@ describe('app module', function () {
it('should set a badge count', function () { it('should set a badge count', function () {
app.setBadgeCount(42) app.setBadgeCount(42)
assert.equal(app.getBadgeCount(), shouldFail ? 0 : 42) assert.equal(app.getBadgeCount(), shouldFail ? 0 : 42)
app.setBadgeCount(0)
}) })
}) })