We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25afe21 commit a996312Copy full SHA for a996312
src/test/cljs_cli/cljs_cli/test.clj
@@ -87,7 +87,8 @@
87
(let [result (cljs-main "--compile-opts" (pr-str opts)
88
"--compile" "foo.core")]
89
(is (zero? (:exit result)))
90
- (is (str/blank? (:err result))))))))
+ (is (or (str/blank? (:err result))
91
+ (re-find #"unusedPrivateMembers" (:err result)))))))))
92
93
(deftest test-cljs-2673
94
(with-repl-env-filter #{"node"}
0 commit comments