We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a15afbc commit 3a1af39Copy full SHA for 3a1af39
1 file changed
src/libs/E2E/actions/waitForAppLoaded.ts
@@ -4,6 +4,7 @@ import ONYXKEYS from '@src/ONYXKEYS';
4
// Once we get the sidebar loaded end mark we know that the app is ready to be used:
5
export default function waitForAppLoaded(): Promise<void> {
6
return new Promise((resolve) => {
7
+ // We have used `connectWithoutView` here because OnyxUpdates is not connected to any UI
8
const connection = Onyx.connectWithoutView({
9
key: ONYXKEYS.IS_SIDEBAR_LOADED,
10
callback: (isSidebarLoaded) => {
0 commit comments