-
Notifications
You must be signed in to change notification settings - Fork 11
/
tests.edn
20 lines (19 loc) · 989 Bytes
/
tests.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#kaocha/v1
{:tests [{:id :unit
:type :kaocha.type/clojure.test
:source-paths ["src"]
:test-paths ["test/unit"]
:kaocha.filter/skip-meta [:kaocha/skip] ;; bug, this should be the default
:ns-patterns [".*-test"]}
{:id :integration
:type :kaocha.type/cucumber
:source-paths ["src"]
:test-paths ["test/features" "test/support"]
:kaocha.filter/skip-meta [:kaocha/skip] ;; bug, this should be the default
:cucumber/glue-paths ["test/features/step_definitions"]
:cucumber/parameter-types
[#:cucumber.parameter
{:name "color"
:regexp "red|blue|yellow|green"
:class kaocha.cucumber.extra_types.Color
:transformer kaocha.cucumber.extra-types/parse-color}]}]}