test: unit tests green after LISTENING gating; build ok
This commit is contained in:
parent
c6a44757b4
commit
300f88053e
@ -888,7 +888,10 @@ export async function registerAllListeners() {
|
|||||||
emitCount += 1;
|
emitCount += 1;
|
||||||
setTimeout(emitListening, 100);
|
setTimeout(emitListening, 100);
|
||||||
};
|
};
|
||||||
emitListening();
|
// N'émettre LISTENING que pour le mode E2E et lorsque l'app est réellement dans une iframe
|
||||||
|
if (isE2E && window.self !== window.top) {
|
||||||
|
emitListening();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function cleanPage() {
|
async function cleanPage() {
|
||||||
@ -926,4 +929,3 @@ document.addEventListener('navigate', ((e: Event) => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user