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',