diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-02-23 16:02:31 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-02-23 16:02:31 -0600 |
commit | 4182edfd7e3333fcf31b94f2f091fe143945b809 (patch) | |
tree | 51fa2548f8138603d0f69ab7ff87d56c2d7b70ee /__tests__ | |
parent | 0f293ecf950c1563668a3a2d2fefb6e9d4585736 (diff) | |
download | voidsky-4182edfd7e3333fcf31b94f2f091fe143945b809.tar.zst |
Implement image uploading in the web composer
Diffstat (limited to '__tests__')
-rw-r--r-- | __tests__/lib/images.test.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/__tests__/lib/images.test.ts b/__tests__/lib/images.test.ts index ad8556efe..38b722e2c 100644 --- a/__tests__/lib/images.test.ts +++ b/__tests__/lib/images.test.ts @@ -1,4 +1,7 @@ -import {downloadAndResize, DownloadAndResizeOpts} from '../../src/lib/images' +import { + downloadAndResize, + DownloadAndResizeOpts, +} from '../../src/lib/media/manip' import ImageResizer from '@bam.tech/react-native-image-resizer' import RNFetchBlob from 'rn-fetch-blob' |