(css: string)
| 1893 | }; |
| 1894 | |
| 1895 | const decls = (css: string) => |
| 1896 | parseCss(`.x { ${css} }`, new Map()).styles.filter( |
| 1897 | (d) => d.selector === ".x" |
| 1898 | ); |
| 1899 | |
| 1900 | describe("var() substitution — background", () => { |
| 1901 | test("var() for color part alongside other background parts", () => { |
no test coverage detected