0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-12 07:41:43 -05:00

Add geom tests to the test runner.

This commit is contained in:
Andrey Antukh 2016-02-04 22:41:26 +02:00
parent 996770a625
commit b484dff945

View file

@ -1,6 +1,7 @@
(ns uxbox.test-runner (ns uxbox.test-runner
(:require [cljs.test :as test] (:require [cljs.test :as test]
[uxbox.data.workspace-tests])) [uxbox.data.workspace-tests]
[uxbox.util.geom-tests]))
(enable-console-print!) (enable-console-print!)
@ -9,6 +10,7 @@
(test/run-tests (test/run-tests
(test/empty-env) (test/empty-env)
'uxbox.data.workspace-tests 'uxbox.data.workspace-tests
'uxbox.util.geom-tests
)) ))
(defmethod test/report [:cljs.test/default :end-run-tests] (defmethod test/report [:cljs.test/default :end-run-tests]