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
313 B
JavaScript
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);
|
|
});
|