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 0409b6a commit eadb7a8Copy full SHA for eadb7a8
test.js
@@ -3,8 +3,15 @@ import test from 'node:test'
3
import {fromMarkdown} from 'mdast-util-from-markdown'
4
import {u} from 'unist-builder'
5
import {removePosition} from './index.js'
6
+import * as mod from './index.js'
7
+
8
+test('removePosition', () => {
9
+ assert.deepEqual(
10
+ Object.keys(mod).sort(),
11
+ ['removePosition'],
12
+ 'should expose the public api'
13
+ )
14
-test('removePosition()', () => {
15
const empty = {position: undefined}
16
17
assert.deepEqual(
0 commit comments