(from, instance = prefixer(from))
| 208 | } |
| 209 | |
| 210 | function check(from, instance = prefixer(from)) { |
| 211 | let input = read(from) |
| 212 | let output = read(from + '.out') |
| 213 | let result = postcss([instance]).process(input) |
| 214 | equal(result.warnings().length, 0) |
| 215 | equal(universalizer(result.css), universalizer(output)) |
| 216 | } |
| 217 | |
| 218 | const COMMONS = [ |
| 219 | 'transition', |
no test coverage detected
searching dependent graphs…