Files
NativeScript/tests/app/http/http-string-worker.ts
Hristo Hristov 7b5ef052fd Tests moved into separate folders (#3794)
Fix android crash on application exit
2017-03-15 12:26:54 +02:00

11 lines
217 B
TypeScript

require("globals");
import * as http from "tns-core-modules/http";
declare var postMessage : any;
http.getString("https://httpbin.org/get").then(function (r) {
postMessage(r);
}, function (e) {
throw e;
});