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 0a93c5e commit f41f6afCopy full SHA for f41f6af
test.js
@@ -4,6 +4,15 @@ import {fromMarkdown} from 'mdast-util-from-markdown'
4
import {toMarkdown} from 'mdast-util-to-markdown'
5
import {math} from 'micromark-extension-math'
6
import {mathFromMarkdown, mathToMarkdown} from './index.js'
7
+import * as mod from './index.js'
8
+
9
+test('core', () => {
10
+ assert.deepEqual(
11
+ Object.keys(mod).sort(),
12
+ ['mathFromMarkdown', 'mathToMarkdown'],
13
+ 'should expose the public api'
14
+ )
15
+})
16
17
test('mathFromMarkdown', () => {
18
assert.deepEqual(
0 commit comments