@@ -4,132 +4,119 @@ import fs from 'node:fs'
4
4
import path from 'node:path'
5
5
import process from 'node:process'
6
6
import { fileURLToPath , URL } from 'node:url'
7
- import test from 'tape '
7
+ import test from 'node:test '
8
8
import buffer from 'is-buffer'
9
9
import { toVFile , read , readSync , write , writeSync } from './index.js'
10
10
11
11
const join = path . join
12
12
13
13
const fixture = fs . readFileSync ( 'readme.md' , 'utf8' )
14
14
15
- test ( 'toVFile()' , ( t ) => {
16
- t . test ( 'should accept a string as `.path`' , ( t ) => {
15
+ test ( 'toVFile()' , async ( t ) => {
16
+ await t . test ( 'should accept a string as `.path`' , ( ) => {
17
17
const file = toVFile ( join ( 'foo' , 'bar' , 'baz.qux' ) )
18
18
19
- t . equal ( file . path , join ( 'foo' , 'bar' , 'baz.qux' ) )
20
- t . equal ( file . basename , 'baz.qux' )
21
- t . equal ( file . stem , 'baz' )
22
- t . equal ( file . extname , '.qux' )
23
- t . equal ( file . dirname , join ( 'foo' , 'bar' ) )
24
- t . equal ( file . value , undefined )
25
- t . end ( )
19
+ assert . equal ( file . path , join ( 'foo' , 'bar' , 'baz.qux' ) )
20
+ assert . equal ( file . basename , 'baz.qux' )
21
+ assert . equal ( file . stem , 'baz' )
22
+ assert . equal ( file . extname , '.qux' )
23
+ assert . equal ( file . dirname , join ( 'foo' , 'bar' ) )
24
+ assert . equal ( file . value , undefined )
26
25
} )
27
26
28
- t . test ( 'should accept a buffer as `.path`' , ( t ) => {
27
+ await t . test ( 'should accept a buffer as `.path`' , ( ) => {
29
28
const file = toVFile ( Buffer . from ( 'readme.md' ) )
30
29
31
- t . equal ( file . path , 'readme.md' )
32
- t . equal ( file . value , undefined )
33
- t . end ( )
30
+ assert . equal ( file . path , 'readme.md' )
31
+ assert . equal ( file . value , undefined )
34
32
} )
35
33
36
- t . test ( 'should accept an object' , ( t ) => {
34
+ await t . test ( 'should accept an object' , ( ) => {
37
35
const file = toVFile ( {
38
36
dirname : join ( 'foo' , 'bar' ) ,
39
37
stem : 'baz' ,
40
38
extname : '.qux'
41
39
} )
42
40
43
- t . equal ( file . path , join ( 'foo' , 'bar' , 'baz.qux' ) )
44
- t . equal ( file . basename , 'baz.qux' )
45
- t . equal ( file . stem , 'baz' )
46
- t . equal ( file . extname , '.qux' )
47
- t . equal ( file . dirname , join ( 'foo' , 'bar' ) )
48
- t . equal ( file . value , undefined )
49
- t . end ( )
41
+ assert . equal ( file . path , join ( 'foo' , 'bar' , 'baz.qux' ) )
42
+ assert . equal ( file . basename , 'baz.qux' )
43
+ assert . equal ( file . stem , 'baz' )
44
+ assert . equal ( file . extname , '.qux' )
45
+ assert . equal ( file . dirname , join ( 'foo' , 'bar' ) )
46
+ assert . equal ( file . value , undefined )
50
47
} )
51
48
52
- t . test ( 'should accept a vfile' , ( t ) => {
49
+ await t . test ( 'should accept a vfile' , ( ) => {
53
50
const first = toVFile ( )
54
51
const second = toVFile ( first )
55
52
56
- t . equal ( first , second )
57
- t . end ( )
53
+ assert . equal ( first , second )
58
54
} )
59
55
60
- t . test ( 'should accept a WHATWG URL object' , ( t ) => {
56
+ await t . test ( 'should accept a WHATWG URL object' , ( ) => {
61
57
const dir = fileURLToPath ( new URL ( './' , import . meta. url ) )
62
58
const file = toVFile ( new URL ( 'baz.qux' , import . meta. url ) )
63
59
64
- t . equal ( file . path , join ( dir , 'baz.qux' ) )
65
- t . equal ( file . basename , 'baz.qux' )
66
- t . equal ( file . stem , 'baz' )
67
- t . equal ( file . extname , '.qux' )
68
- t . equal ( file . dirname , dir . replace ( / [ / \\ ] $ / , '' ) )
69
- t . equal ( file . value , undefined )
70
- t . end ( )
60
+ assert . equal ( file . path , join ( dir , 'baz.qux' ) )
61
+ assert . equal ( file . basename , 'baz.qux' )
62
+ assert . equal ( file . stem , 'baz' )
63
+ assert . equal ( file . extname , '.qux' )
64
+ assert . equal ( file . dirname , dir . replace ( / [ / \\ ] $ / , '' ) )
65
+ assert . equal ( file . value , undefined )
71
66
} )
72
67
} )
73
68
74
- test ( 'toVFile.readSync' , ( t ) => {
75
- t . equal ( toVFile . readSync , readSync , 'should export as an identifier' )
69
+ test ( 'toVFile.readSync' , async ( t ) => {
70
+ assert . equal ( toVFile . readSync , readSync , 'should export as an identifier' )
76
71
77
- t . test ( 'should fail without path' , ( t ) => {
78
- t . throws ( ( ) => {
72
+ await t . test ( 'should fail without path' , ( ) => {
73
+ assert . throws ( ( ) => {
79
74
// @ts -expect-error runtime.
80
75
toVFile . readSync ( )
81
76
} , / p a t h / i)
82
-
83
- t . end ( )
84
77
} )
85
78
86
- t . test ( 'should work (buffer without encoding)' , ( t ) => {
79
+ await t . test ( 'should work (buffer without encoding)' , ( ) => {
87
80
const file = toVFile . readSync ( 'readme.md' )
88
81
89
- t . equal ( file . path , 'readme.md' )
90
- t . ok ( buffer ( file . value ) )
91
- t . equal ( file . toString ( ) , fixture )
92
- t . end ( )
82
+ assert . equal ( file . path , 'readme.md' )
83
+ assert . ok ( buffer ( file . value ) )
84
+ assert . equal ( file . toString ( ) , fixture )
93
85
} )
94
86
95
- t . test ( 'should work (string with encoding)' , ( t ) => {
87
+ await t . test ( 'should work (string with encoding)' , ( ) => {
96
88
const file = toVFile . readSync ( 'readme.md' , 'utf8' )
97
89
98
- t . equal ( file . path , 'readme.md' )
99
- t . equal ( typeof file . value , 'string' )
100
- t . equal ( file . toString ( ) , fixture )
101
- t . end ( )
90
+ assert . equal ( file . path , 'readme.md' )
91
+ assert . equal ( typeof file . value , 'string' )
92
+ assert . equal ( file . toString ( ) , fixture )
102
93
} )
103
94
104
- t . throws (
95
+ assert . throws (
105
96
( ) => {
106
97
toVFile . readSync ( 'missing.md' )
107
98
} ,
108
99
/ E N O E N T / ,
109
100
'should throw on non-existing files'
110
101
)
111
102
112
- t . test ( 'should honor file.cwd when file.path is relative' , ( t ) => {
103
+ await t . test ( 'should honor file.cwd when file.path is relative' , ( ) => {
113
104
const cwd = path . join ( process . cwd ( ) , 'lib' )
114
105
const file = toVFile . readSync ( { path : 'index.js' , cwd} , 'utf8' )
115
106
116
- t . equal ( typeof file . value , 'string' )
117
-
118
- t . end ( )
107
+ assert . equal ( typeof file . value , 'string' )
119
108
} )
120
109
121
- t . test (
110
+ await t . test (
122
111
'should honor file.cwd when file.path is relative, even with relative cwd' ,
123
- ( t ) => {
112
+ ( ) => {
124
113
const file = toVFile . readSync ( { path : 'index.js' , cwd : 'lib' } , 'utf8' )
125
114
126
- t . equal ( typeof file . value , 'string' )
127
-
128
- t . end ( )
115
+ assert . equal ( typeof file . value , 'string' )
129
116
}
130
117
)
131
118
132
- t . throws (
119
+ assert . throws (
133
120
( ) => {
134
121
toVFile . readSync ( {
135
122
path : path . join ( process . cwd ( ) , 'core.js' ) ,
@@ -141,149 +128,135 @@ test('toVFile.readSync', (t) => {
141
128
)
142
129
} )
143
130
144
- test ( 'toVFile.read' , ( t ) => {
145
- t . equal ( toVFile . read , read , 'should export as an identifier' )
146
-
147
- t . test ( 'should pass an error without path' , ( t ) => {
148
- t . plan ( 1 )
131
+ test ( 'toVFile.read' , async ( t ) => {
132
+ assert . equal ( toVFile . read , read , 'should export as an identifier' )
149
133
150
- // @ts -expect-error: not a path.
151
- toVFile . read ( null , ( error ) => {
152
- t . ok ( / p a t h / i. test ( String ( error ) ) )
134
+ await t . test ( 'should pass an error without path' , async ( ) => {
135
+ await new Promise ( ( ok ) => {
136
+ // @ts -expect-error: not a path.
137
+ toVFile . read ( null , ( error ) => {
138
+ assert . ok ( / p a t h / i. test ( String ( error ) ) )
139
+ ok ( undefined )
140
+ } )
153
141
} )
154
142
} )
155
143
156
- t . test ( 'should work (buffer without encoding)' , ( t ) => {
157
- t . plan ( 4 )
158
-
159
- toVFile . read ( 'readme.md' , ( error , file ) => {
160
- t . ifErr ( error )
161
- assert ( file , 'expected file' )
162
- t . equal ( file . path , 'readme.md' )
163
- t . ok ( buffer ( file . value ) )
164
- t . equal ( file . toString ( ) , fixture )
144
+ await t . test ( 'should work (buffer without encoding)' , async ( ) => {
145
+ await new Promise ( ( ok ) => {
146
+ toVFile . read ( 'readme.md' , ( error , file ) => {
147
+ assert . ifError ( error )
148
+ assert ( file , 'expected file' )
149
+ assert . equal ( file . path , 'readme.md' )
150
+ assert . ok ( buffer ( file . value ) )
151
+ assert . equal ( file . toString ( ) , fixture )
152
+ ok ( undefined )
153
+ } )
165
154
} )
166
155
} )
167
156
168
- t . test ( 'should work in promise mode (buffer without encoding)' , ( t ) => {
169
- t . plan ( 3 )
157
+ await t . test (
158
+ 'should work in promise mode (buffer without encoding)' ,
159
+ async ( ) => {
160
+ const result = await toVFile . read ( 'readme.md' )
161
+ assert . equal ( result . path , 'readme.md' )
162
+ assert . ok ( buffer ( result . value ) )
163
+ assert . equal ( result . toString ( ) , fixture )
164
+ }
165
+ )
170
166
171
- toVFile
172
- . read ( 'readme.md' )
173
- . then ( ( result ) => {
174
- t . equal ( result . path , 'readme.md' )
175
- t . ok ( buffer ( result . value ) )
176
- t . equal ( result . toString ( ) , fixture )
177
- } )
178
- . catch ( ( ) => {
179
- t . fail ( 'should resolve, not reject' )
167
+ await t . test ( 'should work (string with encoding)' , async ( ) => {
168
+ await new Promise ( ( ok ) => {
169
+ toVFile . read ( 'readme.md' , 'utf8' , ( error , file ) => {
170
+ assert . ifError ( error )
171
+ assert ( file , 'expected file' )
172
+ assert . equal ( file . path , 'readme.md' )
173
+ assert . equal ( typeof file . value , 'string' )
174
+ assert . equal ( file . toString ( ) , fixture )
175
+ ok ( undefined )
180
176
} )
181
- } )
182
-
183
- t . test ( 'should work (string with encoding)' , ( t ) => {
184
- t . plan ( 4 )
185
-
186
- toVFile . read ( 'readme.md' , 'utf8' , ( error , file ) => {
187
- t . ifErr ( error )
188
- assert ( file , 'expected file' )
189
- t . equal ( file . path , 'readme.md' )
190
- t . equal ( typeof file . value , 'string' )
191
- t . equal ( file . toString ( ) , fixture )
192
177
} )
193
178
} )
194
179
195
- t . test ( 'should work in promise mode (string with encoding)' , ( t ) => {
196
- t . plan ( 3 )
197
-
198
- toVFile
199
- . read ( 'readme.md' , 'utf8' )
200
- . then ( ( result ) => {
201
- t . equal ( result . path , 'readme.md' )
202
- t . equal ( typeof result . value , 'string' )
203
- t . equal ( result . toString ( ) , fixture )
204
- } )
205
- . catch ( ( ) => {
206
- t . fail ( 'should resolve, not reject' )
207
- } )
208
- } )
180
+ await t . test (
181
+ 'should work in promise mode (string with encoding)' ,
182
+ async ( ) => {
183
+ const result = await toVFile . read ( 'readme.md' , 'utf8' )
209
184
210
- t . test ( 'should return an error on non-existing files' , ( t ) => {
211
- t . plan ( 3 )
185
+ assert . equal ( result . path , 'readme.md' )
186
+ assert . equal ( typeof result . value , 'string' )
187
+ assert . equal ( result . toString ( ) , fixture )
188
+ }
189
+ )
212
190
213
- toVFile . read ( 'missing.md' , 'utf8' , ( error , file ) => {
214
- assert ( error , 'expected error' )
215
- t . equal ( file , undefined )
216
- t . ok ( error instanceof Error )
217
- t . ok ( / E N O E N T / . test ( error . message ) )
191
+ await t . test ( 'should return an error on non-existing files' , async ( ) => {
192
+ await new Promise ( ( ok ) => {
193
+ toVFile . read ( 'missing.md' , 'utf8' , ( error , file ) => {
194
+ assert ( error , 'expected error' )
195
+ assert . equal ( file , undefined )
196
+ assert . ok ( error instanceof Error )
197
+ assert . ok ( / E N O E N T / . test ( error . message ) )
198
+ ok ( undefined )
199
+ } )
218
200
} )
219
201
} )
220
202
221
- t . test ( 'should reject on non-existing files in promise mode' , ( t ) => {
222
- t . plan ( 2 )
223
-
224
- toVFile
225
- . read ( 'missing.md' )
226
- . then ( ( ) => {
227
- t . fail ( 'should reject, not resolve' )
228
- } )
229
- . catch ( ( /** @type {Error } */ error ) => {
230
- t . ok ( error instanceof Error )
231
- t . ok ( / E N O E N T / . test ( error . message ) )
232
- } )
233
- } )
203
+ await t . test (
204
+ 'should reject on non-existing files in promise mode' ,
205
+ async ( ) => {
206
+ try {
207
+ await toVFile . read ( 'missing.md' )
208
+ assert . fail ( 'should reject, not resolve' )
209
+ } catch ( error ) {
210
+ assert . ok ( error instanceof Error )
211
+ assert . ok ( / E N O E N T / . test ( error . message ) )
212
+ }
213
+ }
214
+ )
234
215
} )
235
216
236
- test ( 'toVFile.writeSync' , ( t ) => {
217
+ test ( 'toVFile.writeSync' , async ( t ) => {
237
218
const filePath = 'fixture.txt'
238
219
const invalidFilePath = join ( 'invalid' , 'path' , 'to' , 'fixture.txt' )
239
220
240
- t . equal ( toVFile . writeSync , writeSync , 'should export as an identifier' )
221
+ assert . equal ( toVFile . writeSync , writeSync , 'should export as an identifier' )
241
222
242
- t . test ( 'should fail without path' , ( t ) => {
243
- t . throws ( ( ) => {
223
+ await t . test ( 'should fail without path' , ( ) => {
224
+ assert . throws ( ( ) => {
244
225
// @ts -expect-error runtime.
245
226
toVFile . writeSync ( )
246
227
} , / p a t h / i)
247
-
248
- t . end ( )
249
228
} )
250
229
251
- t . test ( 'should work (buffer without encoding)' , ( t ) => {
230
+ await t . test ( 'should work (buffer without encoding)' , ( ) => {
252
231
const result = toVFile . writeSync ( {
253
232
path : filePath ,
254
233
value : Buffer . from ( 'föo' )
255
234
} )
256
235
257
- t . equal ( result . path , filePath )
258
- t . equal ( String ( result ) , 'föo' )
259
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'föo' )
260
-
261
- t . end ( )
236
+ assert . equal ( result . path , filePath )
237
+ assert . equal ( String ( result ) , 'föo' )
238
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'föo' )
262
239
} )
263
240
264
- t . test ( 'should work (string)' , ( t ) => {
241
+ await t . test ( 'should work (string)' , ( ) => {
265
242
const result = toVFile . writeSync ( { path : filePath , value : 'bär' } )
266
243
267
- t . equal ( result . path , filePath )
268
- t . equal ( String ( result ) , 'bär' )
269
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär' )
270
-
271
- t . end ( )
244
+ assert . equal ( result . path , filePath )
245
+ assert . equal ( String ( result ) , 'bär' )
246
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär' )
272
247
} )
273
248
274
- t . test ( 'should work (null)' , ( t ) => {
249
+ await t . test ( 'should work (null)' , ( ) => {
275
250
const result = toVFile . writeSync ( filePath )
276
251
277
- t . equal ( result . path , filePath )
278
- t . equal ( String ( result ) , '' )
279
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , '' )
252
+ assert . equal ( result . path , filePath )
253
+ assert . equal ( String ( result ) , '' )
254
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , '' )
280
255
281
256
fs . unlinkSync ( filePath )
282
-
283
- t . end ( )
284
257
} )
285
258
286
- t . throws (
259
+ assert . throws (
287
260
( ) => {
288
261
toVFile . writeSync ( invalidFilePath )
289
262
} ,
@@ -292,143 +265,132 @@ test('toVFile.writeSync', (t) => {
292
265
)
293
266
} )
294
267
295
- test ( 'toVFile.write' , ( t ) => {
268
+ test ( 'toVFile.write' , async ( t ) => {
296
269
const filePath = 'fixture.txt'
297
270
const invalidFilePath = join ( 'invalid' , 'path' , 'to' , 'fixture.txt' )
298
271
299
- t . equal ( toVFile . write , write , 'should export as an identifier' )
300
-
301
- t . test ( 'should pass an error without path' , ( t ) => {
302
- t . plan ( 1 )
272
+ assert . equal ( toVFile . write , write , 'should export as an identifier' )
303
273
304
- // @ts -expect-error: missing path.
305
- toVFile . write ( null , ( error ) => {
306
- t . ok ( / p a t h / i. test ( String ( error ) ) )
274
+ await t . test ( 'should pass an error without path' , async ( ) => {
275
+ await new Promise ( ( ok ) => {
276
+ // @ts -expect-error: missing path.
277
+ toVFile . write ( null , ( error ) => {
278
+ assert . ok ( / p a t h / i. test ( String ( error ) ) )
279
+ ok ( undefined )
280
+ } )
307
281
} )
308
282
} )
309
283
310
- t . test ( 'should work (buffer without encoding)' , ( t ) => {
284
+ await t . test ( 'should work (buffer without encoding)' , async ( ) => {
311
285
const file = { path : filePath , value : Buffer . from ( 'bäz' ) }
312
286
313
- t . plan ( 3 )
314
-
315
- toVFile . write ( file , ( error , result ) => {
316
- t . ifErr ( error )
317
- assert ( result , 'expected result' )
318
- t . equal ( result . path , filePath )
319
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bäz' )
287
+ await new Promise ( ( ok ) => {
288
+ toVFile . write ( file , ( error , result ) => {
289
+ assert . ifError ( error )
290
+ assert ( result , 'expected result' )
291
+ assert . equal ( result . path , filePath )
292
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bäz' )
293
+ ok ( undefined )
294
+ } )
320
295
} )
321
296
} )
322
297
323
- t . test ( 'should work (string)' , ( t ) => {
298
+ await t . test ( 'should work (string)' , async ( ) => {
324
299
const file = { path : filePath , value : 'qüx' }
325
300
326
- t . plan ( 3 )
327
-
328
- toVFile . write ( file , ( error , result ) => {
329
- t . ifErr ( error )
330
- assert ( result , 'expected result' )
331
- t . equal ( result . path , filePath )
332
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'qüx' )
301
+ await new Promise ( ( ok ) => {
302
+ toVFile . write ( file , ( error , result ) => {
303
+ assert . ifError ( error )
304
+ assert ( result , 'expected result' )
305
+ assert . equal ( result . path , filePath )
306
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'qüx' )
307
+ ok ( undefined )
308
+ } )
333
309
} )
334
310
} )
335
311
336
- t . test ( 'should work in promise mode (string)' , ( t ) => {
337
- t . plan ( 2 )
338
-
339
- toVFile
340
- . write ( { path : filePath , value : 'qüx-promise' } )
341
- . then ( ( result ) => {
342
- t . equal ( result . path , filePath )
343
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'qüx-promise' )
344
- } )
345
- . catch ( ( ) => {
346
- t . fail ( 'should resolve, not reject' )
347
- } )
312
+ await t . test ( 'should work in promise mode (string)' , async ( ) => {
313
+ const result = await toVFile . write ( { path : filePath , value : 'qüx-promise' } )
314
+ assert . equal ( result . path , filePath )
315
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'qüx-promise' )
348
316
} )
349
317
350
- t . test ( 'should work (string with encoding)' , ( t ) => {
318
+ await t . test ( 'should work (string with encoding)' , async ( ) => {
351
319
const file = { path : filePath , value : '62c3a472' }
352
320
353
- t . plan ( 3 )
354
-
355
- toVFile . write ( file , 'hex' , ( error , result ) => {
356
- t . ifErr ( error )
357
- assert ( result , 'expected result' )
358
- t . equal ( result . path , filePath )
359
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär' )
360
- } )
361
- } )
362
-
363
- t . test ( 'should work in promise mode (string with encoding)' , ( t ) => {
364
- t . plan ( 2 )
365
-
366
- toVFile
367
- . write ( { path : filePath , value : '62c3a4722d70726f6d697365' } , 'hex' )
368
- . then ( ( result ) => {
369
- t . equal ( result . path , filePath )
370
- t . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär-promise' )
321
+ await new Promise ( ( ok ) => {
322
+ toVFile . write ( file , 'hex' , ( error , result ) => {
323
+ assert . ifError ( error )
324
+ assert ( result , 'expected result' )
325
+ assert . equal ( result . path , filePath )
326
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär' )
327
+ ok ( undefined )
371
328
} )
372
- . catch ( ( ) => {
373
- t . fail ( 'should resolve, not reject' )
374
- } )
375
- } )
376
-
377
- t . test ( 'should work (null)' , ( t ) => {
378
- t . plan ( 3 )
379
-
380
- toVFile . write ( filePath , ( error , result ) => {
381
- const doc = fs . readFileSync ( filePath , 'utf8' )
382
-
383
- fs . unlinkSync ( filePath )
384
-
385
- assert ( result , 'expected result' )
386
- t . ifErr ( error )
387
- t . equal ( result . path , filePath )
388
- t . equal ( doc , '' )
389
329
} )
390
330
} )
391
331
392
- t . test ( 'should work in promise mode (null)' , ( t ) => {
393
- t . plan ( 2 )
332
+ await t . test (
333
+ 'should work in promise mode (string with encoding)' ,
334
+ async ( ) => {
335
+ const result = await toVFile . write (
336
+ { path : filePath , value : '62c3a4722d70726f6d697365' } ,
337
+ 'hex'
338
+ )
339
+ assert . equal ( result . path , filePath )
340
+ assert . equal ( fs . readFileSync ( filePath , 'utf8' ) , 'bär-promise' )
341
+ }
342
+ )
394
343
395
- toVFile
396
- . write ( filePath )
397
- . then ( ( result ) => {
344
+ await t . test ( 'should work (null)' , async ( ) => {
345
+ await new Promise ( ( ok ) => {
346
+ toVFile . write ( filePath , ( error , result ) => {
398
347
const doc = fs . readFileSync ( filePath , 'utf8' )
399
348
400
349
fs . unlinkSync ( filePath )
401
350
402
- t . equal ( result . path , filePath )
403
- t . equal ( doc , '' )
404
- } )
405
- . catch ( ( ) => {
406
- t . fail ( 'should resolve, not reject' )
351
+ assert ( result , 'expected result' )
352
+ assert . ifError ( error )
353
+ assert . equal ( result . path , filePath )
354
+ assert . equal ( doc , '' )
355
+ ok ( undefined )
407
356
} )
357
+ } )
408
358
} )
409
359
410
- t . test ( 'should pass an error for files that cannot be written ' , ( t ) => {
411
- t . plan ( 1 )
360
+ await t . test ( 'should work in promise mode (null) ' , async ( ) => {
361
+ const result = await toVFile . write ( filePath )
412
362
413
- toVFile . write ( invalidFilePath , ( error ) => {
414
- assert ( error , 'expected error' )
415
- t . ok ( / E N O E N T / . test ( error . message ) )
416
- } )
417
- } )
363
+ const doc = fs . readFileSync ( filePath , 'utf8' )
418
364
419
- t . test (
420
- 'should reject for files that cannot be written in promise mode' ,
421
- ( t ) => {
422
- t . plan ( 1 )
365
+ fs . unlinkSync ( filePath )
423
366
424
- toVFile
425
- . write ( invalidFilePath )
426
- . then ( ( ) => {
427
- t . fail ( 'should reject, not resolve' )
428
- } )
429
- . catch ( ( /** @type {Error } */ error ) => {
430
- t . ok ( / E N O E N T / . test ( error . message ) )
367
+ assert . equal ( result . path , filePath )
368
+ assert . equal ( doc , '' )
369
+ } )
370
+
371
+ await t . test (
372
+ 'should pass an error for files that cannot be written' ,
373
+ async ( ) => {
374
+ await new Promise ( ( ok ) => {
375
+ toVFile . write ( invalidFilePath , ( error ) => {
376
+ assert ( error , 'expected error' )
377
+ assert . ok ( / E N O E N T / . test ( error . message ) )
378
+ ok ( undefined )
431
379
} )
380
+ } )
381
+ }
382
+ )
383
+
384
+ await t . test (
385
+ 'should reject for files that cannot be written in promise mode' ,
386
+ async ( ) => {
387
+ try {
388
+ await toVFile . write ( invalidFilePath )
389
+ assert . fail ( 'should reject, not resolve' )
390
+ } catch ( error ) {
391
+ assert ( error instanceof Error )
392
+ assert . ok ( / E N O E N T / . test ( error . message ) )
393
+ }
432
394
}
433
395
)
434
396
} )
0 commit comments