mirror of
https://github.com/fluencelabs/js-libp2p-interfaces
synced 2025-04-03 00:41:25 +00:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
|
/* eslint-env mocha */
|
||
|
'use strict'
|
||
|
|
||
|
const tests = require('../../src/crypto/tests')
|
||
|
const mockCrypto = require('./mock-crypto')
|
||
|
|
||
|
describe('compliance tests', () => {
|
||
|
tests({
|
||
|
setup () {
|
||
|
return mockCrypto
|
||
|
}
|
||
|
})
|
||
|
})
|