Skip to content

Commit

Permalink
fix another upstream type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Sep 20, 2024
1 parent 6ecb762 commit 5ee5a4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async function toMatchMultipleSvgSnapshots(
const existingSnapshot = fs.readFileSync(filePath, "utf-8")

const result = await looksSame(
Buffer.from(received[index]),
Buffer.from(received[index] as any),
Buffer.from(existingSnapshot),
{
strict: false,
Expand Down

0 comments on commit 5ee5a4d

Please sign in to comment.