Skip to content

Commit 4b84a1a

Browse files
committed
* fix up tests so they don't throw if no warnings
1 parent d701b45 commit 4b84a1a

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

src/test/clojure/cljs/externs_infer_tests.clj

+18-16
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@
158158
:warnings ws})]
159159
(is (= (unsplit-lines ["Foo.Boo.prototype.wozz;"]) res))
160160
(is (= 1 (count @ws)))
161-
(is (string/starts-with?
162-
(first @ws)
163-
"Cannot resolve property wozz for inferred type js/Foo.Boo"))))
161+
(is (some-> @ws first
162+
(string/starts-with?
163+
"Cannot resolve property wozz for inferred type js/Foo.Boo")))))
164164

165165
(deftest test-type-hint-infer-unknown-property-in-chain
166166
(let [ws (atom [])
@@ -172,9 +172,9 @@
172172
:warnings ws})]
173173
(is (= (unsplit-lines ["Foo.Boo.prototype.wozz;"]) res))
174174
(is (= 1 (count @ws)))
175-
(is (string/starts-with?
176-
(first @ws)
177-
"Cannot resolve property wozz for inferred type js/Foo.Boo"))))
175+
(is (some-> @ws first
176+
(string/starts-with?
177+
"Cannot resolve property wozz for inferred type js/Foo.Boo")))))
178178

179179
(deftest test-type-hint-infer-unknown-method
180180
(let [ws (atom [])
@@ -185,9 +185,9 @@
185185
:warnings ws})]
186186
(is (= (unsplit-lines ["Foo.prototype.gozMethod;"]) res))
187187
(is (= 1 (count @ws)))
188-
(is (string/starts-with?
189-
(first @ws)
190-
"Cannot resolve property gozMethod for inferred type js/Foo"))))
188+
(is (some-> @ws first
189+
(string/starts-with?
190+
"Cannot resolve property gozMethod for inferred type js/Foo")))))
191191

192192
(deftest test-infer-unknown-method-from-externs
193193
(let [ws (atom [])
@@ -197,9 +197,9 @@
197197
:warnings ws})]
198198
(is (= (unsplit-lines ["Foo.prototype.gozMethod;"]) res))
199199
(is (= 1 (count @ws)))
200-
(is (string/starts-with?
201-
(first @ws)
202-
"Cannot resolve property gozMethod for inferred type js/Foo"))))
200+
(is (some-> @ws first
201+
(string/starts-with?
202+
"Cannot resolve property gozMethod for inferred type js/Foo")))))
203203

204204
(deftest test-infer-js-require
205205
(let [ws (atom [])
@@ -211,9 +211,9 @@
211211
:warnings ws})]
212212
(is (= (unsplit-lines ["var require;" "Object.Component;"]) res))
213213
(is (= 1 (count @ws)))
214-
(is (string/starts-with?
215-
(first @ws)
216-
"Adding extern to Object for property Component"))))
214+
(is (some-> @ws first
215+
(string/starts-with?
216+
"Adding extern to Object for property Component")))))
217217

218218
(deftest test-set-warn-on-infer
219219
(let [ws (atom [])
@@ -227,7 +227,9 @@
227227
:warn false
228228
:with-core? true})]
229229
(is (= 1 (count @ws)))
230-
(is (string/starts-with? (first @ws) "Cannot infer target type"))))
230+
(is (some-> @ws first
231+
(string/starts-with?
232+
"Cannot infer target type")))))
231233

232234
(deftest test-cljs-1970-infer-with-cljs-literals
233235
(let [ws (atom [])

0 commit comments

Comments
 (0)