File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
build-jar :
2
2
clj -T:build uberjar
3
3
4
- test :
4
+ run-tests :
5
5
clj -M:test -m kaocha.runner
6
6
7
7
PATH_TO_JAR := $(project_dir ) /$(jar_path )
Original file line number Diff line number Diff line change 8
8
:aliases
9
9
{:dev {:extra-paths [" dev" ]}
10
10
11
- :test {:extra-paths [" tests " ]
11
+ :test {:extra-paths [" test " ]
12
12
:exec-fn kaocha.runner/exec-fn
13
13
:extra-deps {com.health-samurai/matcho {:mvn/version " 0.3.11" }
14
14
lambdaisland/kaocha {:mvn/version " 1.91.1392" }}}
Original file line number Diff line number Diff line change 5
5
6
6
(def source ' (io/file " resources/schemas" ))
7
7
8
- (def target (io/file " /tmp/sdk " ))
8
+ (def target (io/file " out/ " ))
9
9
10
10
(defn vector-to-map [v]
11
11
(->> (map (fn [item] (hash-map (:url item) item)) v)
12
12
(into {})))
13
13
14
- (apply merge [{:a 1 :b 2 } {:a 3 :c 4 }])
14
+ ; ; (apply merge [{:a 1 :b 2} {:a 3 :c 4}])
15
15
16
16
(comment
17
17
File renamed without changes.
Original file line number Diff line number Diff line change 2
2
:kaocha.testable/id :unit
3
3
:kaocha/ns-patterns [" -test$" ]
4
4
:kaocha/source-paths [" src" ]
5
- :kaocha/test-paths [" tests " ]}]
5
+ :kaocha/test-paths [" test " ]}]
6
6
:kaocha/fail-fast? false
7
7
:kaocha/color? true
8
8
:kaocha/reporter [#_kaocha.report/dots
You can’t perform that action at this time.
0 commit comments