mirror of https://github.com/status-im/js-waku.git
increase timeout and use tearDownNodes
This commit is contained in:
parent
6d7b235eec
commit
bbd3f61bc4
|
@ -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 () {
|
||||
|
|
|
@ -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 () {
|
||||
|
|
Loading…
Reference in New Issue