(css: string)
| 453 | class MockCSSStyleSheet { |
| 454 | cssText = ""; |
| 455 | replaceSync(css: string) { |
| 456 | this.cssText = css; |
| 457 | } |
| 458 | } |
| 459 | vi.stubGlobal("CSSStyleSheet", MockCSSStyleSheet); |
| 460 | //@ts-expect-error |
no outgoing calls
no test coverage detected