diff --git a/src/test/cljc/dda/c4k_forgejo/core_test.cljc b/src/test/cljc/dda/c4k_forgejo/core_test.cljc index 70b469c..df9720e 100644 --- a/src/test/cljc/dda/c4k_forgejo/core_test.cljc +++ b/src/test/cljc/dda/c4k_forgejo/core_test.cljc @@ -3,10 +3,14 @@ #?(:clj [clojure.test :refer [deftest is are testing run-tests]] :cljs [cljs.test :refer-macros [deftest is are testing run-tests]]) [clojure.spec.alpha :as s] + [clojure.spec.test.alpha :as st] [dda.c4k-common.yaml :as yaml] [dda.c4k-forgejo.core :as cut] #?(:cljs [dda.c4k-common.macros :refer-macros [inline-resources]]))) +(st/instrument `cut/onfig-objects) +(st/instrument `cut/auth-objects) + #?(:cljs (defmethod yaml/load-resource :forgejo-test [resource-name] (get (inline-resources "forgejo-test") resource-name)))