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