You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
391 B
14 lines
391 B
// @ts-nocheck
|
|
import { describe, expect, test } from 'bun:test'
|
|
|
|
describe('BoMdEditor', () => {
|
|
test('ByteMD Editor can be imported', async () => {
|
|
const mod = await import('@bytemd/vue-next')
|
|
expect(mod.Editor).toBeDefined()
|
|
})
|
|
|
|
test('GFM plugin can be imported', async () => {
|
|
const mod = await import('@bytemd/plugin-gfm')
|
|
expect(mod.default).toBeDefined()
|
|
})
|
|
})
|
|
|