|
158 | 158 | :warnings ws})]
|
159 | 159 | (is (= (unsplit-lines ["Foo.Boo.prototype.wozz;"]) res))
|
160 | 160 | (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"))))) |
164 | 164 |
|
165 | 165 | (deftest test-type-hint-infer-unknown-property-in-chain
|
166 | 166 | (let [ws (atom [])
|
|
172 | 172 | :warnings ws})]
|
173 | 173 | (is (= (unsplit-lines ["Foo.Boo.prototype.wozz;"]) res))
|
174 | 174 | (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"))))) |
178 | 178 |
|
179 | 179 | (deftest test-type-hint-infer-unknown-method
|
180 | 180 | (let [ws (atom [])
|
|
185 | 185 | :warnings ws})]
|
186 | 186 | (is (= (unsplit-lines ["Foo.prototype.gozMethod;"]) res))
|
187 | 187 | (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"))))) |
191 | 191 |
|
192 | 192 | (deftest test-infer-unknown-method-from-externs
|
193 | 193 | (let [ws (atom [])
|
|
197 | 197 | :warnings ws})]
|
198 | 198 | (is (= (unsplit-lines ["Foo.prototype.gozMethod;"]) res))
|
199 | 199 | (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"))))) |
203 | 203 |
|
204 | 204 | (deftest test-infer-js-require
|
205 | 205 | (let [ws (atom [])
|
|
211 | 211 | :warnings ws})]
|
212 | 212 | (is (= (unsplit-lines ["var require;" "Object.Component;"]) res))
|
213 | 213 | (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"))))) |
217 | 217 |
|
218 | 218 | (deftest test-set-warn-on-infer
|
219 | 219 | (let [ws (atom [])
|
|
227 | 227 | :warn false
|
228 | 228 | :with-core? true})]
|
229 | 229 | (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"))))) |
231 | 233 |
|
232 | 234 | (deftest test-cljs-1970-infer-with-cljs-literals
|
233 | 235 | (let [ws (atom [])
|
|
0 commit comments