0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-30 22:03:56 -05:00
astro/test/test-utils.js

6 lines
107 B
JavaScript
Raw Normal View History

import cheerio from 'cheerio';
/** load html */
export function doc(html) {
return cheerio.load(html);
}