We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you don't yet have a cljs-test-runner-out dir, and you run tests with :advanced, then no tests are run.
cljs-test-runner-out
:advanced
Repro:
test/foo/core_test.cljs:
test/foo/core_test.cljs
(ns foo.core-test (:require [clojure.test :refer [deftest is]])) (deftest sample-test (is (== 1 1)))
deps.edn:
deps.edn
{:deps {org.clojure/clojurescript {:mvn/version "1.10.520"}} :aliases {:test {:extra-deps {olical/cljs-test-runner {:mvn/version "3.5.0"}} :extra-paths ["test" "cljs-test-runner-out/gen"] :main-opts ["-m" "cljs-test-runner.main"]}}}
Then running the tests produces no output:
$ clojure -A:test -c '{:optimizations :advanced}'
Running them a second time will:
$ clojure -A:test -c '{:optimizations :advanced}' Testing foo.core-test Ran 1 tests containing 1 assertions. 0 failures, 0 errors.
The text was updated successfully, but these errors were encountered:
I'm afraid this is a known gotcha 😭 if you have any tips then I'd love to hear them!
Sorry, something went wrong.
Dynamically add gen-path to classloader
880a941
Fixes Olical#30
a95ae95
4bd00bf
Successfully merging a pull request may close this issue.
If you don't yet have a
cljs-test-runner-out
dir, and you run tests with:advanced
, then no tests are run.Repro:
test/foo/core_test.cljs
:deps.edn
:Then running the tests produces no output:
$ clojure -A:test -c '{:optimizations :advanced}'
Running them a second time will:
$ clojure -A:test -c '{:optimizations :advanced}' Testing foo.core-test Ran 1 tests containing 1 assertions. 0 failures, 0 errors.
The text was updated successfully, but these errors were encountered: