tests won't run
Closed this issue · 3 comments
hellonico commented
~/D/c/bootr ❯❯❯ boot test
temp-dir! was deprecated, please use tmp-dir! instead
Sifting output files...
Writing suite.cljs...
Writing output.cljs.edn...
tmppath was deprecated, please use tmp-path instead
tmpfile was deprecated, please use tmp-file instead
Compiling boot-cljs-output.js...
Running cljs tests...
ERROR: cljs.test was not required.
You can resolve this issue by ensuring [cljs.test] appears
in the :require clause of your test suite namespaces.
Also make sure that your build has actually included any test files.
This is a tenzing generated app so the test file is simply the one generated:
(ns bootr.app-test
(:require-macros [cljs.test :refer [deftest testing is]])
(:require [cljs.test :as t]
[bootr.app :as app]))
(deftest test-arithmetic []
(is (= (+ 0.1 0.2) 0.3) "Something foul is a float."))
alandipert commented
Hello again 😄
Thank you for the report (cc @martinklepsch) but I think this is best handled over at the tenzing repo.
martinklepsch commented
Closing in favor of crisptrutski/boot-cljs-test#14
hellonico commented
tested and confirmed ! great ;)