import { describe, expect, it } from "vitest"; import { getSizeFromSvg } from "./utils.js"; describe("getSizeFromSvg", () => { it("parses width & height attribute", () => { const svg = ``; const result = getSizeFromSvg(svg); expect(result).toMatchObject({ width: 714, height: 574, }); }); it("parses viewbox", () => { const svg = ``; const result = getSizeFromSvg(svg); expect(result).toMatchObject({ width: 872.2750244140625, height: 655 }); }); });