Skip to content

Commit b79101e

Browse files
committed
Remove expect type from tests
1 parent bebe3fc commit b79101e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

types/jsonld/jsonld-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,12 +69,12 @@ jsonld.compact(doc, context, { graph: false })
6969
* expand() test
7070
*/
7171
jsonld.expand(doc, (err, res) => {
72-
res // $ExpectType JsonLdArray
72+
res
7373
log(res);
7474
});
7575

7676
jsonld.expand(doc, (err, res) => {
77-
const result = res.filter(item => item) // $ExpectType JsonLdArray
77+
const result = res.filter(item => item)
7878
log(result);
7979
});
8080

0 commit comments

Comments
 (0)