Add script for native wss test fleet

This commit is contained in:
Franck Royer 2022-04-22 15:12:30 +10:00
parent 87c88ecd0b
commit 1294e0ca0b
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 13 additions and 0 deletions

12
nativeWssTestFleet.js Normal file
View File

@ -0,0 +1,12 @@
import { describe } from "mocha";
import runAll from "./index.js";
const nodes = [
"/dns4/node-01.ac-cn-hongkong-c.wakuv2.test.statusim.net/tcp/8000/wss/p2p/16Uiu2HAkvWiyFsgRhuJEb9JfjYxEkoHLgnUQmr1N5mKWnYjxYRVm",
"/dns4/node-01.do-ams3.wakuv2.test.statusim.net/tcp/8000/wss/p2p/16Uiu2HAmPLe7Mzm8TsYUubgCAW1aJoeFScxrLj8ppHFivPo97bUZ",
"/dns4/node-01.gc-us-central1-a.wakuv2.test.statusim.net/tcp/8000/wss/p2p/16Uiu2HAmJb2e28qLXxT5kZxVUUoJt72EMzNGXB47Rxx5hw3q4YjS",
];
describe("Test Fleet Native WSS", () => {
runAll(nodes);
});

View File

@ -9,6 +9,7 @@
"predefined-prod": "mocha predefinedProdFleet.js --exit",
"predefined-test": "mocha predefinedTestFleet.js --exit ",
"native-wss-prod": "mocha nativeWssProdFleet.js --exit",
"native-wss-test": "mocha nativeWssTestFleet.js --exit",
"waku-connect": "mocha wakuConnectFleet.js --exit"
},
"eslintConfig": {