which works well under Clojurescript REPL when I ran (t/test-ns 'todomvc.transact-test)
but I can't evaluate the file inside LightTable with a browser connection. The ns part yells an ReferenceError: goog is not defined.
What can I do about it? I added [com.cemerick/clojurescript.test "0.3.1"] to both project's :dependencies and :plugins. Btw, clojurescript and core.async have the same versions as seen on clojurescript.test's project.clj
I have this cljs source file:
which works well under Clojurescript REPL when I ran
(t/test-ns 'todomvc.transact-test)
but I can't evaluate the file inside LightTable with a browser connection. Thens
part yells anReferenceError: goog is not defined
.What can I do about it? I added
[com.cemerick/clojurescript.test "0.3.1"]
to both project's:dependencies
and:plugins
. Btw, clojurescript and core.async have the same versions as seen on clojurescript.test'sproject.clj