Requiring Cljs.test
;; Example of requiring the test library "as x". (require '[cljs.test :as x]) (x/deftest simple-case (x/is (= 1 (+ 0 7))))
;; Example of explicitly requiring is and deftest into current namespace (require '[cljs.test :refer [is deftest]]) (deftest simple-case (is (= 1 (+ 0 1))))