mirror of
https://github.com/logos-messaging/waku-tests.git
synced 2026-01-02 14:23:07 +00:00
See https://github.com/status-im/infra-nim-waku/issues/91 for details Mostly done automatically. Some parts manually.
11 lines
301 B
JavaScript
11 lines
301 B
JavaScript
import { describe } from "mocha";
|
|
import { fleets } from "js-waku/lib/predefined_bootstrap_nodes";
|
|
import runAll from "./index.js";
|
|
|
|
const testFleet = fleets.fleets["waku.test"]["waku-websocket"];
|
|
const nodes = Object.values(testFleet);
|
|
|
|
describe("Predefined Test Fleet", () => {
|
|
runAll(nodes);
|
|
});
|