Merge pull request #41 from NodeFactoryIo/mpetrunic/disable-noise-pipes

Disable noise pipes
This commit is contained in:
Belma Gutlic
2020-03-04 11:06:30 +01:00
committed by GitHub
3 changed files with 8 additions and 9 deletions

View File

@ -133,7 +133,7 @@ describe("Noise", () => {
}
});
it("should communicate through encrypted streams with noise pipes", async() => {
it.skip("should communicate through encrypted streams with noise pipes", async() => {
try {
const staticKeysInitiator = generateKeypair();
const noiseInit = new Noise(staticKeysInitiator.privateKey);
@ -167,7 +167,7 @@ describe("Noise", () => {
}
});
it("IK -> XX fallback: initiator has invalid remote static key", async() => {
it.skip("IK -> XX fallback: initiator has invalid remote static key", async() => {
try {
const staticKeysInitiator = generateKeypair();
const noiseInit = new Noise(staticKeysInitiator.privateKey);
@ -233,7 +233,7 @@ describe("Noise", () => {
}
});
it("Initiator starts with XX (pipes disabled), responder has enabled noise pipes", async() => {
it.skip("Initiator starts with XX (pipes disabled), responder has enabled noise pipes", async() => {
try {
const staticKeysInitiator = generateKeypair();
const noiseInit = new Noise(staticKeysInitiator.privateKey, undefined, false);
@ -268,7 +268,7 @@ describe("Noise", () => {
}
});
it("IK: responder has no remote static key", async() => {
it.skip("IK: responder has no remote static key", async() => {
try {
const staticKeysInitiator = generateKeypair();
const noiseInit = new Noise(staticKeysInitiator.privateKey);