This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-11-11
Channels
- # asami (19)
- # babashka (41)
- # beginners (115)
- # biff (7)
- # calva (78)
- # clj-kondo (29)
- # cljs-dev (9)
- # clojure (39)
- # clojure-europe (17)
- # clojure-gamedev (29)
- # clojure-nl (1)
- # clojure-norway (9)
- # clojure-spec (2)
- # clojure-uk (3)
- # clojurescript (7)
- # core-async (26)
- # cursive (16)
- # datomic (13)
- # emacs (1)
- # events (5)
- # fulcro (2)
- # funcool (4)
- # gratitude (1)
- # helix (1)
- # holy-lambda (1)
- # humbleui (1)
- # introduce-yourself (4)
- # java (1)
- # jobs (2)
- # jobs-discuss (9)
- # lsp (28)
- # matcher-combinators (2)
- # mathematics (1)
- # membrane (1)
- # nbb (12)
- # off-topic (10)
- # pathom (52)
- # polylith (38)
- # portal (32)
- # re-frame (4)
- # reagent (16)
- # reitit (2)
- # remote-jobs (1)
- # reveal (1)
- # rewrite-clj (10)
- # sci (67)
- # shadow-cljs (45)
- # squint (1)
- # tools-build (13)
- # tools-deps (16)
I'm running tests in my project with nbb
and running into issues with missing built-ins:
Unresolved var: t/run-test
and
Could not find namespace: clojure.test.tap
I am not sure if this is something I am doing or if it's nbb
. Do I need to upgrade my local Clojure?I have figured out that I was doing cljs.test/async
all wrong and I have it working now so there is no urgency on this fix. 😅
ClojureScript 1.11.54
cljs.user=> (require '[clojure.test.tap])
Unexpected error (ExceptionInfo) compiling at (<cljs repl>:1:1).
cljs.user=> (cljs.test/run-test 'foo)
WARNING: Use of undeclared Var cljs.test/run-test at line 1 <cljs repl>
Yes perhaps not. I just saw it in the clojure.test
namespace online.
Yes, my mistake sorry!