import { describe, expect, it } from "vitest"; import { TRANSITION_STYLE } from "../constants"; describe("TRANSITION_STYLE", () => { it("limits transitions to visual properties", () => { expect(TRANSITION_STYLE).not.toContain("all"); expect(TRANSITION_STYLE).toContain("fill"); expect(TRANSITION_STYLE).toContain("opacity"); }); });