mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-07-22 12:01:57 +00:00
17 lines
260 B
JavaScript
17 lines
260 B
JavaScript
![]() |
/* eslint-env mocha */
|
||
|
'use strict'
|
||
|
|
||
|
const expect = require('chai').expect
|
||
|
|
||
|
const identify = require('../src')
|
||
|
|
||
|
describe('identify', () => {
|
||
|
it('multicodec', () => {
|
||
|
expect(
|
||
|
identify.multicodec
|
||
|
).to.be.eql(
|
||
|
'/ipfs/id/1.0.0'
|
||
|
)
|
||
|
})
|
||
|
})
|