js-libp2p-noise/test/handshake.test.ts
2019-11-21 14:43:12 +01:00

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() => {
})
});