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 edfd766 commit c1b1971Copy full SHA for c1b1971
test/index.js
@@ -8,8 +8,15 @@ import test from 'node:test'
8
import {fromMarkdown} from 'mdast-util-from-markdown'
9
import {toMarkdown} from 'mdast-util-to-markdown'
10
import {isHidden} from 'is-hidden'
11
+import * as mod from '../index.js'
12
13
test('zone', async () => {
14
+ assert.deepEqual(
15
+ Object.keys(mod).sort(),
16
+ ['zone'],
17
+ 'should expose the public api'
18
+ )
19
+
20
const root = new URL('fixtures/', import.meta.url)
21
const folders = await fs.readdir(root)
22
let index = -1
0 commit comments