(ns test.test-suite (:require [cljs.test :refer-macros [run-tests]] [test.model.dimension-glossary-test] [test.model.history-test] [test.panels.filter.handlers-test] [test.misc-tests] [test.steps.dayparts.imple.overlap-test] [test.steps.dayparts.config-test] [test.steps.dayparts.handlers-test] [test.steps.load-mwi.handlers-test] [test.steps.tags.handlers-test] [test.steps.handlers-test] ) (:refer-clojure :exclude [set-print-fn!])) (enable-console-print!) (defn run-all-enhancer-tests [] ;;TODO: Use regex matching on our test. namespace so we don't need explicit imports (run-tests 'test.model.dimension-glossary-test 'test.model.history-test 'test.panels.filter.handlers-test 'test.misc-tests 'test.steps.dayparts.imple.overlap-test 'test.steps.dayparts.config-test 'test.steps.dayparts.handlers-test 'test.steps.load-mwi.handlers-test 'test.steps.tags.handlers-test 'test.steps.handlers-test )) (defn ^:export set-print-fn! [f] (set! cljs.core.*print-fn* f))