(string, config)
| 2 | import type { Config, ValidationError } from './types'; |
| 3 | |
| 4 | function validate(string, config) { |
| 5 | return Markdoc.validate(Markdoc.parse(string), config); |
| 6 | } |
| 7 | |
| 8 | describe('validate', function () { |
| 9 | describe('function validation', function () { |
no test coverage detected
searching dependent graphs…