0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 08:20:45 -05:00
penpot/common/test/common_tests/setup.cljs
2022-11-08 13:02:14 +01:00

9 lines
224 B
Clojure

(ns common-tests.setup
(:require
[clojure.test :as t]))
(defmethod t/report [:cljs.test/default :end-run-tests]
[m]
(if (t/successful? m)
(set! (.-exitCode js/process) 0)
(set! (.-exitCode js/process) 1)))