@@ -14,7 +14,6 @@ test('footnote', async function (t) {
14
14
await t . test ( 'should render `footnote`s (#1)' , async function ( ) {
15
15
assert . equal (
16
16
toHtml (
17
- // @ts -expect-error: to do: remove when `to-html` is released.
18
17
toHast ( {
19
18
type : 'root' ,
20
19
children : [
@@ -57,7 +56,6 @@ test('footnote', async function (t) {
57
56
await t . test ( 'should render footnotes in tables' , async function ( ) {
58
57
assert . equal (
59
58
toHtml (
60
- // @ts -expect-error: to do: remove when `to-html` is released.
61
59
toHast (
62
60
fromMarkdown (
63
61
`| Footnotes |
@@ -102,7 +100,6 @@ test('footnote', async function (t) {
102
100
await t . test ( 'should render footnotes in table cells' , async function ( ) {
103
101
assert . equal (
104
102
toHtml (
105
- // @ts -expect-error: to do: remove when `to-html` is released.
106
103
toHast (
107
104
fromMarkdown (
108
105
`| [^1] | [^2] |
@@ -140,7 +137,6 @@ test('footnote', async function (t) {
140
137
async function ( ) {
141
138
assert . equal (
142
139
toHtml (
143
- // @ts -expect-error: to do: remove when `to-html` is released.
144
140
toHast (
145
141
fromMarkdown ( 'Call[^1][^1]\n\n[^1]: Recursion[^1][^1]' , {
146
142
extensions : [ gfm ( ) ] ,
@@ -165,7 +161,6 @@ test('footnote', async function (t) {
165
161
async function ( ) {
166
162
assert . equal (
167
163
toHtml (
168
- // @ts -expect-error: to do: remove when `to-html` is released.
169
164
toHast (
170
165
fromMarkdown ( '[^1]\n[^1]: a' , {
171
166
extensions : [ gfm ( ) ] ,
@@ -194,7 +189,6 @@ test('footnote', async function (t) {
194
189
async function ( ) {
195
190
assert . equal (
196
191
toHtml (
197
- // @ts -expect-error: to do: remove when `to-html` is released.
198
192
toHast (
199
193
fromMarkdown ( '[^1]\n[^1]: a' , {
200
194
extensions : [ gfm ( ) ] ,
@@ -228,7 +222,6 @@ test('footnote', async function (t) {
228
222
async function ( ) {
229
223
assert . equal (
230
224
toHtml (
231
- // @ts -expect-error: to do: remove when `to-html` is released.
232
225
toHast (
233
226
fromMarkdown ( '[^1]\n[^1]: a' , {
234
227
extensions : [ gfm ( ) ] ,
@@ -254,7 +247,6 @@ test('footnote', async function (t) {
254
247
async function ( ) {
255
248
assert . equal (
256
249
toHtml (
257
- // @ts -expect-error: to do: remove when `to-html` is released.
258
250
toHast (
259
251
fromMarkdown ( '[^1]\n[^1]: a' , {
260
252
extensions : [ gfm ( ) ] ,
@@ -294,7 +286,6 @@ test('footnote', async function (t) {
294
286
await t . test ( 'should support an empty `clobberPrefix`' , async function ( ) {
295
287
assert . equal (
296
288
toHtml (
297
- // @ts -expect-error: to do: remove when `to-html` is released.
298
289
toHast (
299
290
fromMarkdown ( '[^1]\n[^1]: a' , {
300
291
extensions : [ gfm ( ) ] ,
@@ -317,7 +308,6 @@ test('footnote', async function (t) {
317
308
await t . test ( 'should support a `footnoteLabelTagName`' , async function ( ) {
318
309
assert . equal (
319
310
toHtml (
320
- // @ts -expect-error: to do: remove when `to-html` is released.
321
311
toHast (
322
312
fromMarkdown ( '[^1]\n[^1]: a' , {
323
313
extensions : [ gfm ( ) ] ,
@@ -340,7 +330,6 @@ test('footnote', async function (t) {
340
330
await t . test ( 'should support a `footnoteLabelProperties`' , async function ( ) {
341
331
assert . equal (
342
332
toHtml (
343
- // @ts -expect-error: to do: remove when `to-html` is released.
344
333
toHast (
345
334
fromMarkdown ( '[^1]\n[^1]: a' , {
346
335
extensions : [ gfm ( ) ] ,
@@ -363,7 +352,6 @@ test('footnote', async function (t) {
363
352
await t . test ( 'should support funky footnote identifiers' , async function ( ) {
364
353
assert . equal (
365
354
toHtml (
366
- // @ts -expect-error: to do: remove when `to-html` is released.
367
355
toHast (
368
356
fromMarkdown (
369
357
'a[^__proto__] b[^__proto__] c[^constructor]\n\n[^__proto__]: d\n[^constructor]: e' ,
0 commit comments