This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-08-01
Channels
- # babashka (2)
- # beginners (51)
- # calva (79)
- # cestmeetup (1)
- # chlorine-clover (1)
- # cider (6)
- # clj-kondo (1)
- # cljdoc (4)
- # cljsrn (2)
- # clojure (31)
- # clojure-europe (2)
- # clojurescript (5)
- # conjure (4)
- # cursive (26)
- # datascript (4)
- # datomic (1)
- # figwheel (1)
- # figwheel-main (2)
- # off-topic (25)
- # reagent (2)
- # reveal (4)
- # shadow-cljs (21)
- # xtdb (1)
@oliver.marks the error message says could not find: cljs.example.test_runner
which means it was looking in paths
for cljs/example/test_runner.cljs
. so the full path would have one of the paths from paths prepended. so for example, test/cljs/
+ cljs/example/test_runner.cljs
. so that probably was a problem. glad you got it working.
@oliver.marks you can name test files something else if you want. no need to name them the same as what they're testing + -test. it's just a convention.