increase timeout and use tearDownNodes

This commit is contained in:
fbarbu15 2023-09-21 11:29:27 +03:00
parent 6d7b235eec
commit bbd3f61bc4
2 changed files with 17 additions and 11 deletions

View File

@ -17,7 +17,12 @@ import chai, { expect } from "chai";
import chaiAsPromised from "chai-as-promised";
import sinon from "sinon";
import { delay, makeLogFileName, NOISE_KEY_1 } from "../src/index.js";
import {
delay,
makeLogFileName,
NOISE_KEY_1,
tearDownNodes
} from "../src/index.js";
import { NimGoNode } from "../src/node/node.js";
chai.use(chaiAsPromised);
@ -43,13 +48,9 @@ describe("Util: toAsyncIterator: Filter", () => {
await waitForRemotePeer(waku, [Protocols.Filter, Protocols.LightPush]);
});
afterEach(async () => {
try {
await nwaku.stop();
await waku.stop();
} catch (err) {
console.log("Failed to stop", err);
}
afterEach(async function () {
this.timeout(10000);
tearDownNodes([nwaku], [waku]);
});
it("creates an iterator", async function () {

View File

@ -16,7 +16,12 @@ import { createLightNode, createRelayNode } from "@waku/sdk";
import { bytesToUtf8, utf8ToBytes } from "@waku/utils/bytes";
import { expect } from "chai";
import { makeLogFileName, NOISE_KEY_1, NOISE_KEY_2 } from "../src/index.js";
import {
makeLogFileName,
NOISE_KEY_1,
NOISE_KEY_2,
tearDownNodes
} from "../src/index.js";
import { NimGoNode } from "../src/node/node.js";
const TestContentTopic = "/test/1/waku/utf8";
@ -63,8 +68,8 @@ describe("Waku Dial [node only]", function () {
let nwaku: NimGoNode;
afterEach(async function () {
!!nwaku && (await nwaku.stop());
!!waku && waku.stop().catch((e) => console.log("Waku failed to stop", e));
this.timeout(10000);
tearDownNodes([nwaku], [waku]);
});
it("Passing an array", async function () {