test: skip some flaky tests on CI

This commit is contained in:
Igor Randjelovic
2021-02-05 23:02:44 +01:00
parent 946befe979
commit b688994f98
4 changed files with 10 additions and 13 deletions

View File

@ -1,8 +1,8 @@
import * as http from '@nativescript/core/http';
import { Http } from '@nativescript/core';
declare var postMessage: any;
http.getString('https://httpbin.org/get').then(
Http.getString('https://httpbin.org/get').then(
function (r) {
postMessage(r);
},