mirror of https://github.com/waku-org/js-waku.git
try only
This commit is contained in:
parent
fa7ab23725
commit
931073178c
|
@ -10,17 +10,17 @@ const config = {
|
|||
retries: 4
|
||||
};
|
||||
|
||||
if (process.env.CI) {
|
||||
console.log("Running tests in parallel");
|
||||
config.parallel = true;
|
||||
config.jobs = 6;
|
||||
console.log("Activating allure reporting");
|
||||
config.reporter = 'mocha-multi-reporters';
|
||||
config.reporterOptions = {
|
||||
configFile: '.mocha.reporters.json'
|
||||
};
|
||||
} else {
|
||||
console.log("Running tests serially. To enable parallel execution update mocha config");
|
||||
}
|
||||
// if (process.env.CI) {
|
||||
// console.log("Running tests in parallel");
|
||||
// config.parallel = true;
|
||||
// config.jobs = 6;
|
||||
// console.log("Activating allure reporting");
|
||||
// config.reporter = 'mocha-multi-reporters';
|
||||
// config.reporterOptions = {
|
||||
// configFile: '.mocha.reporters.json'
|
||||
// };
|
||||
// } else {
|
||||
// console.log("Running tests serially. To enable parallel execution update mocha config");
|
||||
// }
|
||||
|
||||
module.exports = config;
|
||||
|
|
|
@ -24,7 +24,7 @@ import {
|
|||
teardownNodesWithRedundancy
|
||||
} from "../../src/index.js";
|
||||
|
||||
describe("Waku Filter: Peer Management: E2E", function () {
|
||||
describe.only("Waku Filter: Peer Management: E2E", function () {
|
||||
this.timeout(15000);
|
||||
let waku: LightNode;
|
||||
let serviceNodes: ServiceNodesFleet;
|
||||
|
|
Loading…
Reference in New Issue