From 29cc6b4f9cd17c6dad66882ddca8df8a4e63bdf7 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 16 Apr 2025 17:40:34 +0200 Subject: [PATCH] :sparkles: Print the current seed on test.check fail --- common/src/app/common/schema/test.cljc | 1 + 1 file changed, 1 insertion(+) diff --git a/common/src/app/common/schema/test.cljc b/common/src/app/common/schema/test.cljc index 7fa774dd15..c3b38b0a2b 100644 --- a/common/src/app/common/schema/test.cljc +++ b/common/src/app/common/schema/test.cljc @@ -60,6 +60,7 @@ (let [smallest (-> params :shrunk :smallest vec)] (println) (println "Condition failed with the following params:") + (println "Seed:" (:seed params)) (println) (pp/pprint smallest)))