cljs.test/successful?

functionsince v0.0-2496 clojure.test/successful?Edit
(successful? summary)

Source docstring:
Returns true if the given test summary indicates all tests
were successful, false otherwise.
Source code @ clojurescript:src/main/cljs/cljs/test.cljs
(defn successful?
  [summary]
  (and (zero? (:fail summary 0))
       (zero? (:error summary 0))))