bensu / doo

doo is a library and lein plugin to run cljs.test on different js environments.
Eclipse Public License 1.0
324 stars 63 forks source link

:js-env setting is ignored #119

Closed ricardojmendez closed 6 years ago

ricardojmendez commented 8 years ago

Setting the :js-env value on the :doo settings map seems to have no effect. When running lein with-profile test doo it still asks me to specify the environment.

Tried with both :doo {:build "test" :js-env :phantom} and :doo {:build "test" :js-env "phantom"}.

Using 0.1.6 for the plugin and 0.1.7 for the library.

miikka commented 6 years ago

With the current version of Doo (0.1.8), there's no :js-env setting. The default environment is set by creating an alias called :default:

:doo {:build "test"
      :alias {:default [:phantomjs]}}