mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 00:10:11 -05:00
9 lines
224 B
Clojure
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)))
|