mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
548664f6ce
Make common as first-class module.
9 lines
237 B
Clojure
9 lines
237 B
Clojure
(ns app.init-test
|
|
(:require
|
|
[cljs.test :as t :include-macros true]))
|
|
|
|
(defmethod t/report [:cljs.test/default :end-run-tests]
|
|
[m]
|
|
(if (t/successful? m)
|
|
(set! (.-exitCode js/process) 0)
|
|
(set! (.-exitCode js/process) 1)))
|