kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

test: formatting s3 test

Tin 3f348c76 ae76bf57

+3 -5
+3 -5
tests/api/storage/s3.test.ts
··· 93 93 expect(() => validateTaskAssetUploadInput("image/png", 0)).toThrow( 94 94 "Upload size must be greater than zero.", 95 95 ); 96 - expect( 97 - () => validateTaskAssetUploadInput("image/png", 2 * 1024 * 1024), 98 - ).toThrow( 99 - "Upload exceeds the maximum upload size of 1MB.", 100 - ); 96 + expect(() => 97 + validateTaskAssetUploadInput("image/png", 2 * 1024 * 1024), 98 + ).toThrow("Upload exceeds the maximum upload size of 1MB."); 101 99 expect(() => validateTaskAssetUploadInput("image/png", 512)).not.toThrow(); 102 100 }); 103 101 });