(actual: string, expected: string, label: string)
| 141 | /* ---------- tests ---------- */ |
| 142 | |
| 143 | function expectStringEqualish(actual: string, expected: string, label: string) { |
| 144 | // Strings (font family, sizes, contrast number) compared verbatim. |
| 145 | expect(actual, label).toBe(expected) |
| 146 | } |
| 147 | |
| 148 | describe('Codex chrome theme parity (all inline-style tokens)', () => { |
| 149 | for (const snap of snapshots) { |
no test coverage detected