We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dabbeb commit e66004eCopy full SHA for e66004e
test.js
@@ -5,6 +5,15 @@ import {toMarkdown} from 'mdast-util-to-markdown'
5
import {removePosition} from 'unist-util-remove-position'
6
import {directive} from 'micromark-extension-directive'
7
import {directiveFromMarkdown, directiveToMarkdown} from './index.js'
8
+import * as mod from './index.js'
9
+
10
+test('core', () => {
11
+ assert.deepEqual(
12
+ Object.keys(mod).sort(),
13
+ ['directiveFromMarkdown', 'directiveToMarkdown'],
14
+ 'should expose the public api'
15
+ )
16
+})
17
18
test('directiveFromMarkdown', () => {
19
assert.deepEqual(
0 commit comments