This repository has been archived on 2023-07-28. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-bot/mastodon_bot/core_test.cljs
Arnout Engelen f229bf7eec Make cljs scripts executable
Without this 'npm start'/'npm test' doesn't work for me on linux
2020-03-03 21:36:50 +01:00

12 lines
245 B
Clojure
Executable file

#!/usr/bin/env lumo
(ns mastodon-bot.core_test
(:require
[cljs.test :refer-macros [deftest is testing run-tests]]
[mastodon-bot.core :as core]
))
(deftest test-read-config
(is (= 300 core/max-post-length)))
(cljs.test/run-tests)