Skip to content

Commit

Permalink
Fix test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jmglov committed Feb 15, 2024
1 parent bc75e06 commit afbf21e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
14 changes: 7 additions & 7 deletions test/quickblog/test_runner.clj
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit afbf21e

Please sign in to comment.