specter/test/com/rpl/specter/cljs_test_runner.cljs
Mayank Jain 4695c96998 Add cljs tests to travis
* Add lein-doo plugin to run cljs tests. This is the new recommended
  approach.
* Update project.clj to add cljsbuild config
* Update .travis.yml file to run cljs tests as well.
* Also to speed up travis builds add ~/.m2 dir in cache

To run do:
$ lein do javac, doo phantom test-build once

Note that you'll need phantomjs installed for above to work.
2017-03-11 02:31:10 +05:30

7 lines
252 B
Clojure

(ns com.rpl.specter.cljs-test-runner
(:require [doo.runner :refer-macros [doo-tests]]
[com.rpl.specter.core-test]
[com.rpl.specter.zipper-test]))
(doo-tests 'com.rpl.specter.core-test
'com.rpl.specter.zipper-test)