From b484dff945fe2c537bc1b4a591f57d00b97493f4 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Thu, 4 Feb 2016 22:41:26 +0200 Subject: [PATCH] Add geom tests to the test runner. --- test/uxbox/test_runner.cljs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/uxbox/test_runner.cljs b/test/uxbox/test_runner.cljs index 175684aca..885fb2cfd 100644 --- a/test/uxbox/test_runner.cljs +++ b/test/uxbox/test_runner.cljs @@ -1,6 +1,7 @@ (ns uxbox.test-runner (:require [cljs.test :as test] - [uxbox.data.workspace-tests])) + [uxbox.data.workspace-tests] + [uxbox.util.geom-tests])) (enable-console-print!) @@ -9,6 +10,7 @@ (test/run-tests (test/empty-env) 'uxbox.data.workspace-tests + 'uxbox.util.geom-tests )) (defmethod test/report [:cljs.test/default :end-run-tests]