diff --git a/test/Spec.hs b/test/Spec.hs
index bd0eadfbd184dfee4ac3dcea71ce1c6cdb2e7819..211811b473da03d8133c33f4adeb932f71f5a8b5 100644
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -180,7 +180,7 @@ spec = with (return app) $ do
     it "responds to JSON non-Event body with 400 (Invalid Request)" $
       postJSON "/webhook" "{}" `shouldRespondWith` 400
 
-  -- describe "success behavior of POST /webhook" $ do
-  --   it "responds to JSON-encoded Event body with 200 (OK)" $
-  --     forAll chargeSucceededEvents $ \event ->
-  --       postJSON "/webhook" (encode event) `shouldRespondWith` 200
+  describe "success behavior of POST /webhook" $ do
+    it "responds to JSON-encoded Event body with 200 (OK)" $
+      forAll chargeSucceededEvents $ \event ->
+        postJSON "/webhook" (encode event) `shouldRespondWith` 200