From 8cbd9326da896f672f80d3913e3d91f2f722c1d2 Mon Sep 17 00:00:00 2001 From: Yogendra Shelke <25844542+YogendraShelke@users.noreply.github.com> Date: Wed, 24 Jun 2026 09:24:23 +0530 Subject: [PATCH] fix: enable developer mode in AppDelegate and adjust memory settings for E2E tests --- .github/workflows/ios.yml | 4 +++- example/ios/MendixNativeExample/AppDelegate.swift | 2 +- example/jest.config.js | 1 - 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index bae9dc6..fc93106 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -84,4 +84,6 @@ jobs: # Run tests - name: Run Harness E2E tests working-directory: example - run: yarn harness:ios + run: | + export NODE_OPTIONS="--max-old-space-size=6144" + yarn harness:ios diff --git a/example/ios/MendixNativeExample/AppDelegate.swift b/example/ios/MendixNativeExample/AppDelegate.swift index bf5983c..d86af0f 100644 --- a/example/ios/MendixNativeExample/AppDelegate.swift +++ b/example/ios/MendixNativeExample/AppDelegate.swift @@ -16,7 +16,7 @@ class AppDelegate: ReactAppProvider { bundleUrl: bundleUrl, runtimeUrl: URL(string: "http://localhost:8081")!, warningsFilter: .none, - isDeveloperApp: false, + isDeveloperApp: true, clearDataAtLaunch: false, splashScreenPresenter: nil, reactLoading: nil, diff --git a/example/jest.config.js b/example/jest.config.js index 210c856..af66ed2 100644 --- a/example/jest.config.js +++ b/example/jest.config.js @@ -1,5 +1,4 @@ module.exports = { - forceExit: true, projects: [ { displayName: 'react-native-harness',