Commit 76485a4 1 parent 77d5e9e commit 76485a4 Copy full SHA for 76485a4
File tree 1 file changed +2
-2
lines changed
packages/verified-fetch/test
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ describe('accept header', () => {
268
268
expect ( resp . headers . get ( 'content-type' ) ) . to . equal ( 'application/octet-stream' )
269
269
} )
270
270
271
- it . skip ( 'should support fetching IPNS records' , async ( ) => {
271
+ it ( 'should support fetching IPNS records' , async ( ) => {
272
272
const peerId = await createEd25519PeerId ( )
273
273
const obj = {
274
274
hello : 'world'
@@ -288,7 +288,7 @@ describe('accept header', () => {
288
288
expect ( resp . headers . get ( 'content-type' ) ) . to . equal ( 'application/vnd.ipfs.ipns-record' )
289
289
const buf = await resp . arrayBuffer ( )
290
290
291
- expect ( buf ) . to . equalBytes ( marshal ( record ) )
291
+ expect ( new Uint8Array ( buf ) ) . to . equalBytes ( marshal ( record ) )
292
292
} )
293
293
294
294
shouldNotAcceptCborWith ( {
You can’t perform that action at this time.
0 commit comments