(css: Root, result: Result)
| 84 | |
| 85 | test('warn() accepts options', () => { |
| 86 | let warner = (css: Root, result: Result): void => { |
| 87 | css.first?.warn(result, 'FIRST!', { index: 1 }) |
| 88 | } |
| 89 | |
| 90 | let result = postcss([warner]).process('a{}') |
| 91 | is(result.warnings().length, 1) |
nothing calls this directly
no test coverage detected
searching dependent graphs…