Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
danisharora099 committed Jul 3, 2023
1 parent b87fad5 commit cbeef28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/tests/tests/peer_exchange.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ import { delay } from "../src/delay.js";
import { makeLogFileName } from "../src/log_file.js";
import { NimGoNode } from "../src/node/node.js";

describe("Peer Exchange", () => {
describe.only("Peer Exchange", () => {
let waku: LightNode;

afterEach(async function () {
!!waku && waku.stop().catch((e) => console.log("Waku failed to stop", e));
!!waku && (await waku.stop());
});

it("Auto discovery", async function () {
Expand Down Expand Up @@ -74,7 +74,7 @@ describe("Peer Exchange", () => {
afterEach(async function () {
!!nwaku1 && (await nwaku1.stop());
!!nwaku2 && (await nwaku2.stop());
!!waku && waku.stop().catch((e) => console.log("Waku failed to stop", e));
!!waku && (await waku.stop());
});

it("nwaku interop", async function () {
Expand Down

0 comments on commit cbeef28

Please sign in to comment.