mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Dzmitry Lemechko <dzmitry.lemechko@elastic.co>
This commit is contained in:
parent
7650d58e8d
commit
0a46d03f8e
1 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,11 @@ if (!Fs.existsSync(gatlingProjectRootPath)) {
|
|||
);
|
||||
}
|
||||
|
||||
const dropEmptyLines = (s: string) => s.split(',').filter((i) => i.length > 0);
|
||||
const dropEmptyLines = (s: string) =>
|
||||
s
|
||||
.split(',')
|
||||
.filter((i) => i.length > 0)
|
||||
.map((i) => (i.includes('.') ? i : `branch.${i}`));
|
||||
const simulationClasses = dropEmptyLines(simulationEntry);
|
||||
const simulationsRootPath = resolve(gatlingProjectRootPath, baseSimulationPath);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue