Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
(defproject ingesolvoll/doo "0.2.0"
(defproject ingesolvoll/doo "0.2.1"
:description "doo is a library to run clj.test on different js environments."
:url "https://github.com/bensu/doo"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}

:scm {:name "git"
:url "https://github.com/bensu/doo"
:url "https://github.com/ingesolvoll/doo"
:dir ".."}

:deploy-repositories [["clojars" {:sign-releases false
Expand Down
3 changes: 2 additions & 1 deletion src/doo/core.clj
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,8 @@ where:
{:pre [(valid-js-env? js-env (karma/custom-launchers opts))]}
(let [doo-opts (merge default-opts opts)
cmd (cond-> (js->command js-env compiler-opts doo-opts)
(not (self-hosted? js-env)) (conj (or (:output-to doo-opts) (:output-to compiler-opts))))]
(and (not (self-hosted? js-env)) (not (karma/env? js-env compiler-opts)))
(conj (or (:output-to doo-opts) (:output-to compiler-opts))))]
(when (:debug doo-opts)
(utils/debug-log "Command to run script:" cmd))
(try
Expand Down