forked from pjstadig/humane-test-output
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
24 lines (24 loc) · 1.66 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject chbrown/humane-test-output "0.8.3"
:description "Humane test output for clojure.test"
:url "http://github.com/chbrown/humane-test-output"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:deploy-repositories [["releases" :clojars]]
:test-selectors
{:default (complement :intentionally-failing)
:yes-i-know-the-tests-are-supposed-to-fail :intentionally-failing}
:profiles {:dev {:dependencies [[org.clojure/clojure "1.8.0"]
[org.clojure/clojurescript "1.7.228"]
[org.seleniumhq.selenium/selenium-java "2.52.0"]
[com.codeborne/phantomjsdriver "1.2.1"]]
:plugins [[lein-cljsbuild "1.1.2"]]
:cljsbuild {:test-commands {"test" ["phantomjs" "dev-resources/test/phantom/run.js" "dev-resources/test/test.html"]}
:builds [{:id "test"
:source-paths ["src" "test"]
:compiler {:main humane-test-output.run-all
:asset-path "../../target/cljsbuild/js/compiled/test/out"
:output-to "target/cljsbuild/js/compiled/humanize-test-output-test.js"
:output-dir "target/cljsbuild/js/compiled/test/out"
:source-map-timestamp true}}]}}
:test {:injections [(require 'humane-test-output.core)
(humane-test-output.core/activate!)]}})