Fixed multipipelining

This commit is contained in:
Dunemask 2022-08-12 20:10:57 +00:00
parent 82a4865404
commit 1bb588f294
13 changed files with 66 additions and 27 deletions

View file

@ -133,9 +133,21 @@ const testsMock = () => {
const mappingsMock = () => {
return [
["primary", "secondary1", "tertiary1"],
["primary", "secondary1", "tertiary2"],
["primary", "secondary2", "tertiary3"],
[
{ name: "primary", delay: 0 },
{ name: "secondary1", delay: 1000 },
{ name: "tertiary1", delay: 0 },
],
[
{ name: "primary", delay: 0 },
{ name: "secondary1", delay: 1000 },
{ name: "tertiary2", delay: 8000 },
],
[
{ name: "primary", delay: 0 },
{ name: "secondary2", delay: 0 },
{ name: "tertiary3", delay: 3000 },
],
];
};