(done)
| 361 | } |
| 362 | |
| 363 | export function test_raises_onerror_Event(done) { |
| 364 | let xhr = new XMLHttpRequest(); |
| 365 | xhr.onerror = () => { |
| 366 | done(null); |
| 367 | }; |
| 368 | xhr.open('GET', 'https://no-such-domain.nativescript.org'); |
| 369 | xhr.send(); |
| 370 | } |
| 371 | |
| 372 | export function test_responseType(done) { |
| 373 | let xhr = new XMLHttpRequest(); |