Skip to content

Commit cd98dec

Browse files
committed
Fixed CLJS support for provided. Requires were wrong
1 parent 42eec6f commit cd98dec

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

src/main/com/fulcrologic/guardrails/malli/fulcro_spec_helpers.cljc

+7-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@
22
"Fulcro spec includes when-mocking! and provided!, which do stub checking via Clojure Spec. This ns has alternatives
33
that work for when you are stubbing functions that use Malli."
44
#?(:cljs (:require-macros [com.fulcrologic.guardrails.malli.fulcro-spec-helpers]))
5-
#?(:clj
6-
(:require
7-
[com.fulcrologic.guardrails.malli.registry :as gr.reg]
8-
[fulcro-spec.impl.macros :as im]
9-
[fulcro-spec.provided :as fsp]
10-
[fulcro-spec.spec :as ffs]
11-
[fulcro-spec.stub :as stub]
12-
[malli.core :as mc])))
5+
(:require
6+
#?@(:clj [[fulcro-spec.provided :as fsp]
7+
[fulcro-spec.spec :as ffs]
8+
[fulcro-spec.stub :as stub]
9+
[fulcro-spec.impl.macros :as im]])
10+
[com.fulcrologic.guardrails.malli.registry :as gr.reg]
11+
[malli.core :as mc]))
1312

1413
#?(:clj (def original-conformed-stub fsp/conformed-stub))
1514

0 commit comments

Comments
 (0)