(css: string, contentAttr: string, hostAttr: string = '')
| 9 | import {ShadowCss} from '../../src/shadow_css'; |
| 10 | |
| 11 | export function shim(css: string, contentAttr: string, hostAttr: string = '') { |
| 12 | const shadowCss = new ShadowCss(); |
| 13 | return shadowCss.shimCssText(css, contentAttr, hostAttr); |
| 14 | } |
| 15 | |
| 16 | const shadowCssMatchers: jasmine.CustomMatcherFactories = { |
| 17 | toEqualCss: function (): jasmine.CustomMatcher { |
no test coverage detected
searching dependent graphs…