mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-03 16:21:04 +00:00
16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
|
/* eslint-env mocha */
|
||
|
'use strict'
|
||
|
|
||
|
const chai = require('chai')
|
||
|
const dirtyChai = require('dirty-chai')
|
||
|
const expect = chai.expect
|
||
|
chai.use(dirtyChai)
|
||
|
|
||
|
const identify = require('libp2p-identify')
|
||
|
|
||
|
describe('basic', () => {
|
||
|
it('multicodec', () => {
|
||
|
expect(identify.multicodec).to.eql('/ipfs/id/1.0.0')
|
||
|
})
|
||
|
})
|