mirror of
https://github.com/status-im/reagent.git
synced 2025-01-29 05:07:04 +00:00
13 lines
228 B
Clojure
13 lines
228 B
Clojure
(ns envsetup
|
|
(:require [demo :as site]
|
|
[reagent.core :as r]))
|
|
|
|
(site/start! nil)
|
|
|
|
(defn do-test []
|
|
(when (exists? js/runtests)
|
|
(js/runtests.run-tests)))
|
|
|
|
;; Wait for tests to be defined
|
|
(r/next-tick do-test)
|