Skip to content

Commit

Permalink
Update apps/api/__tests__/lib/s3.test.ts
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
justinsiek and github-actions[bot] authored Jan 18, 2025
1 parent 08c3096 commit e827805
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/api/__tests__/lib/s3.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { getOne, uploadOne, deleteOne } from "../../lib/s3";

test("getOnePresigned does not return null", async () => {
let url = null;
url = await getOne("dev/profile-images/users/1877385915/1-intro-photo-final.jpg");
url = await getOne(
"dev/profile-images/users/1877385915/1-intro-photo-final.jpg"
);
console.log(url);

expect(url).not.toBe(null);
Expand Down

0 comments on commit e827805

Please sign in to comment.