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