(theme: ThemeDefinition)
| 6 | import type { ThemeDefinition } from "../tokens.js"; |
| 7 | |
| 8 | function cloneTheme(theme: ThemeDefinition): ThemeDefinition { |
| 9 | return JSON.parse(JSON.stringify(theme)) as ThemeDefinition; |
| 10 | } |
| 11 | |
| 12 | describe("theme.extend", () => { |
| 13 | test("single token override updates only that token", () => { |
no test coverage detected