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);
},

View File

@@ -1,4 +1,4 @@
import { ImageSource } from '@nativescript/core/image-source';
import { ImageSource } from '@nativescript/core';
import * as TKUnit from '../tk-unit';
import * as http from '@nativescript/core/http';
import * as fs from '@nativescript/core/file-system';
@@ -697,7 +697,7 @@ export var test_getString_WorksProperlyInWorker = function (done) {
done();
};
worker.onerror = function (e) {
console.log('errir received');
console.log('error received');
done(e);
};
};