Fixup base integration test

This commit is contained in:
Valere
2025-11-06 16:48:20 +01:00
parent a55ce19048
commit 2e6b1767b9
3 changed files with 87 additions and 79 deletions

View File

@@ -133,11 +133,8 @@ export function createConnectionManager$({
*/
const transports$ = scope.behavior(
combineLatest([running$, inputTransports$]).pipe(
map(([running, transports]) => ({
epoch: transports.epoch,
value: running ? transports.value : [],
})),
map((transports) => removeDuplicateTransports(transports.value)),
map(([running, transports]) => (running ? transports : [])),
map((transports) => removeDuplicateTransports(transports)),
),
);