import { expect, test } from "bun:test" const testSvg = ` ` test("svg snapshot example", async () => { // First run will create the snapshot // Subsequent runs will compare against the saved snapshot await expect(testSvg).toMatchSvgSnapshot(import.meta.path) })