(rows: string[])
| 949 | |
| 950 | describe('table parsing', function () { |
| 951 | function setupTableDoc(rows: string[]) { |
| 952 | return ` |
| 953 | {% table %} |
| 954 | - column 1 |
| 955 | - column 2 |
| 956 | --- |
| 957 | ${rows.join('\n')} |
| 958 | {% /table %} |
| 959 | `; |
| 960 | } |
| 961 | |
| 962 | it('should preserve default if tag during table parsing without extra parser args', function () { |
| 963 | const document = setupTableDoc([ |
no outgoing calls
no test coverage detected
searching dependent graphs…