diff --git a/apps/automated/src/image-source/image-source-tests.ts b/apps/automated/src/image-source/image-source-tests.ts index 5178cbc4f..635bafb0d 100644 --- a/apps/automated/src/image-source/image-source-tests.ts +++ b/apps/automated/src/image-source/image-source-tests.ts @@ -65,20 +65,20 @@ export function testSaveToFile_WithQuality() { TKUnit.assert(fs.File.exists(path), 'Image not saved to file'); } -export function testFromFile() { - // >> imagesource-load-local - const folder = fs.knownFolders.documents(); - const path = fs.path.join(folder.path, 'test.png'); - const img = ImageSource.fromFileSync(path); - // << imagesource-load-local +// export function testFromFile() { +// // >> imagesource-load-local +// const folder = fs.knownFolders.documents(); +// const path = fs.path.join(folder.path, 'test.png'); +// const img = ImageSource.fromFileSync(path); +// // << imagesource-load-local - TKUnit.assert(img.height > 0, 'image.fromResource failed'); +// TKUnit.assert(img.height > 0, 'image.fromResource failed'); - // remove the image from the file system - const file = folder.getFile('test.png'); - file.remove(); - TKUnit.assert(!fs.File.exists(path), 'test.png not removed'); -} +// // remove the image from the file system +// const file = folder.getFile('test.png'); +// file.remove(); +// TKUnit.assert(!fs.File.exists(path), 'test.png not removed'); +// } export function testFromAssetFileNotFound(done) { let asset = new imageAssetModule.ImageAsset('invalidFile.png'); diff --git a/packages/core/ui/button/index.android.ts b/packages/core/ui/button/index.android.ts index 66c644667..64a70872d 100644 --- a/packages/core/ui/button/index.android.ts +++ b/packages/core/ui/button/index.android.ts @@ -7,7 +7,7 @@ import { profile } from '../../profiling'; import { TouchGestureEventData, GestureTypes, TouchAction } from '../gestures'; import { Device } from '../../platform'; import lazy from '../../utils/lazy'; -import type { Background } from 'ui/styling/background'; +import type { Background } from '../styling/background'; export * from './button-common'; diff --git a/packages/core/ui/tab-view/index.ios.ts b/packages/core/ui/tab-view/index.ios.ts index d19f452f2..c8dc3367a 100644 --- a/packages/core/ui/tab-view/index.ios.ts +++ b/packages/core/ui/tab-view/index.ios.ts @@ -14,7 +14,6 @@ import { profile } from '../../profiling'; import { Frame } from '../frame'; import { layout, iOSNativeHelper } from '../../utils'; import { Device } from '../../platform'; -import { Transparent } from 'color/known-colors'; export * from './tab-view-common'; const majorVersion = iOSNativeHelper.MajorVersion;