test: unit tests green after LISTENING gating; build ok
Some checks failed
CI/CD Pipeline / integration-test (push) Has been skipped
CI/CD Pipeline / test (push) Failing after 18s
CI/CD Pipeline / security (push) Has been skipped

This commit is contained in:
Your Name 2025-08-26 12:40:15 +02:00
parent c6a44757b4
commit 300f88053e

View File

@ -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) => {
} }
} }
})); }));