File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 17
17
strategy :
18
18
matrix :
19
19
node :
20
- - lts/fermium
20
+ - lts/gallium
21
21
- node
Original file line number Diff line number Diff line change 44
44
},
45
45
"devDependencies" : {
46
46
"@types/mdast" : " ^3.0.0" ,
47
- "@types/tape " : " ^4 .0.0" ,
47
+ "@types/node " : " ^18 .0.0" ,
48
48
"c8" : " ^7.0.0" ,
49
49
"prettier" : " ^2.0.0" ,
50
50
"remark-cli" : " ^11.0.0" ,
51
51
"remark-preset-wooorm" : " ^9.0.0" ,
52
- "tape" : " ^5.0.0" ,
53
52
"tsd" : " ^0.25.0" ,
54
53
"type-coverage" : " ^2.0.0" ,
55
54
"typescript" : " ^4.0.0" ,
Original file line number Diff line number Diff line change 1
- import test from 'tape'
1
+ import assert from 'node:assert/strict'
2
+ import test from 'node:test'
2
3
import { u } from './index.js'
3
4
4
- test ( 'u' , function ( t ) {
5
- t . deepEqual (
5
+ test ( 'u' , function ( ) {
6
+ assert . deepEqual (
6
7
u ( 'root' , [
7
8
u ( 'subtree' , { id : 1 } ) ,
8
9
u ( 'subtree' , { id : 2 } , [
@@ -32,6 +33,4 @@ test('u', function (t) {
32
33
]
33
34
}
34
35
)
35
-
36
- t . end ( )
37
36
} )
You can’t perform that action at this time.
0 commit comments