diff --git a/CHANGELOG.md b/CHANGELOG.md index 11e4db2..a281954 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ Instances of quickblog can be seen here: ## Unreleased +- Fix argument passing in test runner ([@jmglov](https://github.com/jmglov)) - Add `--date` to api/new. ([@jmglov](https://github.com/jmglov)) - Support Selmer template for new posts in api/new; see [Templates > New posts](README.md#new-posts) in README. ([@jmglov](https://github.com/jmglov)) diff --git a/test/quickblog/test_runner.clj b/test/quickblog/test_runner.clj index c5e32d4..d051630 100644 --- a/test/quickblog/test_runner.clj +++ b/test/quickblog/test_runner.clj @@ -1,11 +1,11 @@ (ns quickblog.test-runner - {:org.babashka/cli {:coerce {:dirs :strings - :nses :symbols - :patterns :strings - :vars :symbols - :includes :keywords - :excludes :keywords - :only :symbols}}} + {:org.babashka/cli {:coerce {:dirs [:string] + :nses [:symbol] + :patterns [:string] + :vars [:symbol] + :includes [:keyword] + :excludes [:keyword] + :only :symbol}}} (:refer-clojure :exclude [test]) (:require [clojure.test :as test]