test(rtc): add insert-300-blocks case

This commit is contained in:
rcmerci
2024-08-30 22:30:44 +08:00
parent 4c5a861da8
commit fde4e0d3cf
6 changed files with 49 additions and 8 deletions

View File

@@ -259,4 +259,7 @@
(def data-to-ws-encoder (m/encoder data-to-ws-schema (mt/transformer
mt/string-transformer
(mt/key-transformer {:encode m/-keyword->string}))))
(def data-to-ws-coercer (m/coercer data-to-ws-schema mt/string-transformer nil #(m/-fail! ::data-to-ws-schema %)))
(def data-to-ws-coercer (m/coercer data-to-ws-schema mt/string-transformer nil
#(do
(prn ::data-to-ws-schema %)
(m/-fail! ::data-to-ws-schema %))))