mirror of
https://github.com/fluencelabs/js-libp2p-noise
synced 2025-05-04 20:02:18 +00:00
12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import { expect } from "chai";
|
|
import DuplexPair from 'it-pair/duplex';
|
|
|
|
import { Noise } from "../src";
|
|
import {generateEd25519Keys} from "./utils";
|
|
|
|
describe("Handshake", () => {
|
|
it("should propose, exchange and finish handshake", async() => {
|
|
|
|
})
|
|
});
|