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 29655a2 commit c244759Copy full SHA for c244759
src/clj/cljs/test.clj
@@ -294,9 +294,10 @@
294
Optional argument is a regular expression; only namespaces with
295
names matching the regular expression (with re-matches) will be
296
tested."
297
- ([] `(cljs.test/run-all-tests nil))
298
- ([re]
299
- `(cljs.test/run-tests (cljs.test/empty-env)
+ ([] `(cljs.test/run-all-tests nil (cljs.test/empty-env)))
+ ([re] `(cljs.test/run-all-tests ~re (cljs.test/empty-env)))
+ ([re env]
300
+ `(cljs.test/run-tests ~env
301
~@(map
302
(fn [ns] `(quote ~ns))
303
(cond->> (ana-api/all-ns)
0 commit comments