(content: string, options?: ParserOptions)
| 2300 | |
| 2301 | describe('whitespace management when adopting strategy condense', () => { |
| 2302 | const parse = (content: string, options?: ParserOptions) => |
| 2303 | baseParse(content, { |
| 2304 | whitespace: 'condense', |
| 2305 | ...options, |
| 2306 | }) |
| 2307 | |
| 2308 | test('should remove whitespaces at start/end inside an element', () => { |
| 2309 | const ast = parse(`<div> <span/> </div>`) |
no test coverage detected