describe('#decFavoriteCount()', () => {
    it('should decrement the favorite count property by 1', async () => {
      await Post.decFavoriteCount(testPost._id);
      const post = await Post.findById(testPost);
      const jsonPost = post.toJSON();