(source: string, node: Node, expected: string)
| 11 | } from '../lib/postcss.js' |
| 12 | |
| 13 | function checkOffset(source: string, node: Node, expected: string): void { |
| 14 | let start = node.source!.start!.offset |
| 15 | let end = node.source!.end!.offset |
| 16 | equal(source.slice(start, end), expected) |
| 17 | } |
| 18 | |
| 19 | test('root', () => { |
| 20 | let source = '.a{}' |
no outgoing calls
no test coverage detected
searching dependent graphs…