Skip to content

Commit a2571b7

Browse files
committed
chore: remane tests dir
1 parent 62a0b4d commit a2571b7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
build-jar:
22
clj -T:build uberjar
33

4-
test:
4+
run-tests:
55
clj -M:test -m kaocha.runner
66

77
PATH_TO_JAR := $(project_dir)/$(jar_path)

deps.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:aliases
99
{:dev {:extra-paths ["dev"]}
1010

11-
:test {:extra-paths ["tests"]
11+
:test {:extra-paths ["test"]
1212
:exec-fn kaocha.runner/exec-fn
1313
:extra-deps {com.health-samurai/matcho {:mvn/version "0.3.11"}
1414
lambdaisland/kaocha {:mvn/version "1.91.1392"}}}

dev/user.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
(def source' (io/file "resources/schemas"))
77

8-
(def target (io/file "/tmp/sdk"))
8+
(def target (io/file "out/"))
99

1010
(defn vector-to-map [v]
1111
(->> (map (fn [item] (hash-map (:url item) item)) v)
1212
(into {})))
1313

14-
(apply merge [{:a 1 :b 2} {:a 3 :c 4}])
14+
;; (apply merge [{:a 1 :b 2} {:a 3 :c 4}])
1515

1616
(comment
1717

File renamed without changes.

tests.edn

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
:kaocha.testable/id :unit
33
:kaocha/ns-patterns ["-test$"]
44
:kaocha/source-paths ["src"]
5-
:kaocha/test-paths ["tests"]}]
5+
:kaocha/test-paths ["test"]}]
66
:kaocha/fail-fast? false
77
:kaocha/color? true
88
:kaocha/reporter [#_kaocha.report/dots

0 commit comments

Comments
 (0)