/** * @jest-environment node */ import { asBlob } from '../index' const HTML_CASE = ` Document

jest test

` describe('arguments test', () => { test(`html`, async () => { const data = await asBlob(HTML_CASE) expect(data).toBeInstanceOf(Buffer) }) })