mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-07-08 13:21:34 +00:00
* Updating CI files This commit updates all CI scripts to the latest version * chore: update deps * bump timeouts for key gen * kick to make circle spin with trusty * travis can be really slow
16 lines
308 B
JavaScript
16 lines
308 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('../src')
|
|
|
|
describe('basic', () => {
|
|
it('multicodec', () => {
|
|
expect(identify.multicodec).to.eql('/ipfs/id/1.0.0')
|
|
})
|
|
})
|