// @ts-nocheck import { describe, expect, test } from 'bun:test' describe('BoMdEditor', () => { test('Vditor can be imported', async () => { const mod = await import('vditor') expect(mod.default).toBeDefined() }) test('Vditor has expected API', async () => { const Vditor = (await import('vditor')).default expect(typeof Vditor).toBe('function') // Vditor static methods expect(typeof Vditor.preview).toBe('function') }) })