mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 09:08:31 -05:00
10 lines
252 B
Clojure
10 lines
252 B
Clojure
(ns app.common.setup-test
|
|
(:require
|
|
[clojure.test :as t]))
|
|
|
|
#?(:cljs
|
|
(defmethod t/report [:cljs.test/default :end-run-tests]
|
|
[m]
|
|
(if (t/successful? m)
|
|
(set! (.-exitCode js/process) 0)
|
|
(set! (.-exitCode js/process) 1))))
|