(input, expected, prefix = '')
| 83 | |
| 84 | test('splits rules for `optimizeForSpeed`', t => { |
| 85 | function assert(input, expected, prefix = '') { |
| 86 | t.deepEqual(transform(prefix, input, { splitRules: true }), expected) |
| 87 | } |
| 88 | |
| 89 | assert('div { color: red }', ['div{color:red;}']) |
| 90 |