Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
weboko committed Apr 18, 2024
1 parent f9b9bda commit fd60cc2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {

const TEST_TIMEOUT = 30_000;

describe("Connection state", function () {
describe.only("Connection state", function () {
this.timeout(TEST_TIMEOUT);
let waku: LightNode;

Expand Down Expand Up @@ -87,7 +87,7 @@ describe("Connection state", function () {
expect(eventCount).to.be.eq(1);
});

it("`waku:online` bwtween 2 js-waku relay nodes", async function () {
it("`waku:online` between 2 js-waku relay nodes", async function () {
const waku1 = await createRelayNode({
staticNoiseKey: NOISE_KEY_1
});
Expand Down Expand Up @@ -159,7 +159,7 @@ describe("Connection state", function () {
expect(waku.isConnected()).to.be.false;
});

it("isConnected bwtween 2 js-waku relay nodes", async function () {
it("isConnected between 2 js-waku relay nodes", async function () {
const waku1 = await createRelayNode({
staticNoiseKey: NOISE_KEY_1
});
Expand Down

0 comments on commit fd60cc2

Please sign in to comment.