We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85bab07 commit 5b34a6dCopy full SHA for 5b34a6d
src/main/cljs/cljs/spec/test.cljc
@@ -181,10 +181,13 @@ Returns a collection of syms naming the vars unstrumented."
181
(validate-check-opts opts#)
182
(check-1 nil ~f ~spec opts#))))
183
184
-(defn checkable-syms* [opts]
185
- (reduce into #{}
186
- [(filter fn-spec-name? (keys @s/registry-ref))
187
- (keys (:spec opts))]))
+(defn checkable-syms*
+ ([]
+ (checkable-syms* nil))
+ ([opts]
188
+ (reduce into #{}
189
+ [(filter fn-spec-name? (keys @s/registry-ref))
190
+ (keys (:spec opts))])))
191
192
(defmacro checkable-syms
193
"Given an opts map as per check, returns the set of syms that
0 commit comments