Skip to content

Commit a996312

Browse files
committed
exclude new warning from cljs-2650 test for now
1 parent 25afe21 commit a996312

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: src/test/cljs_cli/cljs_cli/test.clj

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@
8787
(let [result (cljs-main "--compile-opts" (pr-str opts)
8888
"--compile" "foo.core")]
8989
(is (zero? (:exit result)))
90-
(is (str/blank? (:err result))))))))
90+
(is (or (str/blank? (:err result))
91+
(re-find #"unusedPrivateMembers" (:err result)))))))))
9192

9293
(deftest test-cljs-2673
9394
(with-repl-env-filter #{"node"}

0 commit comments

Comments
 (0)