I have 10 features running in parallel and in reportportal i have 10 separate launches . I want to to merge results in one launch . Is that possible!? **protractor conf** : ``` .... config.multiCapabilities = [{ browserName: 'chrome', shardTestFiles: true, maxInstances: 10, acceptInsecureCerts: true }]; config.cucumberOpts.format = 'e2e/reportPortalFormatter.js'; .... ``` **reportportal config** ``` module.exports = { "token": token, "endpoint": endpoint + 'api/v1', "launch": launch, "project": project, "takeScreenshot": "onFailure", "attributes": [{ "key": "name", "value": launch }, { "key": "environement", "value": environement }, ], "mode": "DEFAULT", "debug": false, "reportSkippedCucumberStepsOnFailedTest": false, } ```