waku-tests/predefinedSandboxFleet.js
Anton Iakimov 7566f100ab
chore: switch wakuv2 fleet to waku
See https://github.com/status-im/infra-nim-waku/issues/91 for details

Mostly done automatically. Some parts manually.
2024-03-12 17:50:36 +01:00

11 lines
313 B
JavaScript

import { describe } from "mocha";
import runAll from "./index.js";
import { fleets } from "js-waku/lib/predefined_bootstrap_nodes";
const sandboxFleet = fleets.fleets["waku.sandbox"]["waku-websocket"];
const nodes = Object.values(sandboxFleet);
describe("Predefined Sandbox Fleet", () => {
runAll(nodes);
});