mirror of
https://github.com/penpot/penpot.git
synced 2025-01-09 08:20:45 -05:00
22 lines
688 B
Clojure
22 lines
688 B
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) KALEIDOS INC
|
|
|
|
(ns frontend-tests.setup
|
|
(:require
|
|
[cljs.test :as t :include-macros true]))
|
|
|
|
#_(enable-console-print!)
|
|
|
|
(defmethod t/report [:cljs.test/default :end-run-tests]
|
|
[m]
|
|
(if (t/successful? m)
|
|
(set! (.-exitCode js/process) 0)
|
|
(set! (.-exitCode js/process) 1)))
|
|
|
|
#_(set! *main-cli-fn*
|
|
#(t/run-tests 'frontend-tests.test-snap-data
|
|
'frontend-tests.test-simple-math
|
|
'frontend-tests.test-range-tree))
|