mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-03 16:21:04 +00:00
16 lines
304 B
TypeScript
16 lines
304 B
TypeScript
|
/* eslint-env mocha */
|
||
|
|
||
|
import suite from '@libp2p/interface-compliance-tests/connection-encrypter'
|
||
|
import { Plaintext } from '../../src/insecure/index.js'
|
||
|
|
||
|
describe('plaintext compliance', () => {
|
||
|
suite({
|
||
|
async setup () {
|
||
|
return new Plaintext()
|
||
|
},
|
||
|
async teardown () {
|
||
|
|
||
|
}
|
||
|
})
|
||
|
})
|