So I run cider-test-run-ns-tests
in foo.bar
and it says No test namespace: foo.bar-test
because the test ns wasn't loaded in on startup. What command can I use to load foo.bar-test
such that I can create a binding that will run a command in foo.bar
that will load foo.bar-test
and run all tests in foo.bar-test
?
can i recommend just getting used to evaling the namespaces you want to use?
if you're in a buffer just a C-c C-k
will eval it
Do you mean: • switching to the test buffer • evaluating the test buffer • switching back to original buffer • run tests I'd like to: • eval test buffer from original buffer • run tests
maybe this is a cider issue, i'm in cljs repl, and the following happens:
cljs.user> (goog.object/get gevents/EventType (clj->js :KEYUP))
WARNING: Use of undeclared Var goog.events/EventType at line 1 <cljs repl>
"keyup"
it says the var is undeclared, but also gives the value i was expecting
also, when i run figwheel, the webpage updates correctly, and displays a warning
at the top i have (ns doing-io.core (:require [goog.events :as gevents] ...)
I got it working FYI
doubt its a CIDER issue
i checked https://grep.app for these
thanks!
@dpsutton +1
i've never heard of http://greg.app before, but it makes a lot of sense
another thing i'm surprised i don't see more of: AI support for code writing