perf(test): reduce vitest logging overhead and media fixture cost

This commit is contained in:
Peter Steinberger
2026-02-14 00:59:53 +00:00
parent 31d8546afd
commit e8377799bb
4 changed files with 11 additions and 6 deletions

View File

@@ -146,8 +146,8 @@ describe("web auto-reply", () => {
const smallPng = await sharp({
create: {
width: 200,
height: 200,
width: 64,
height: 64,
channels: 3,
background: { r: 0, g: 255, b: 0 },
},
@@ -251,8 +251,8 @@ describe("web auto-reply", () => {
const bigPng = await sharp({
create: {
width: 3200,
height: 3200,
width: 2000,
height: 2000,
channels: 3,
background: { r: 255, g: 0, b: 0 },
},