(node: AnyNode, helpers: Helpers)
| 626 | |
| 627 | test('passes helpers', async () => { |
| 628 | function check(node: AnyNode, helpers: Helpers): void { |
| 629 | equal(helpers.result.messages, []) |
| 630 | is(typeof helpers.postcss, 'function') |
| 631 | is(helpers.comment().type, 'comment') |
| 632 | is(new helpers.Comment().type, 'comment') |
| 633 | equal(helpers.list, postcss.list) |
| 634 | } |
| 635 | |
| 636 | let syncPlugin: Plugin = { |
| 637 | Once: check, |