disable many params test for cljs because of bug in cljs

This commit is contained in:
Nathan Marz 2015-09-11 17:28:37 -04:00
parent c6522de07d
commit 993015b128

View file

@ -523,6 +523,7 @@
))
))))
#?(:clj
(deftest large-params-test
(let [path (apply s/comp-paths (repeat 25 s/keypath))
m (reduce
@ -532,3 +533,6 @@
(reverse (range 25)))]
(is (= :a (s/select-one (apply path (range 25)) m)))
))
;;TODO: there's a bug in clojurescript that won't allow
;; non function implementations of IFn to have more than 20 arguments
)