Skip to content

Commit d728e57

Browse files
Merge pull request #52 from mendix/harness-test-fix
Fix harness tests
2 parents 18adfcc + 8cbd932 commit d728e57

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ios.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,6 @@ jobs:
8484
# Run tests
8585
- name: Run Harness E2E tests
8686
working-directory: example
87-
run: yarn harness:ios
87+
run: |
88+
export NODE_OPTIONS="--max-old-space-size=6144"
89+
yarn harness:ios

example/ios/MendixNativeExample/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class AppDelegate: ReactAppProvider {
1616
bundleUrl: bundleUrl,
1717
runtimeUrl: URL(string: "http://localhost:8081")!,
1818
warningsFilter: .none,
19-
isDeveloperApp: false,
19+
isDeveloperApp: true,
2020
clearDataAtLaunch: false,
2121
splashScreenPresenter: nil,
2222
reactLoading: nil,

example/jest.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = {
2-
forceExit: true,
32
projects: [
43
{
54
displayName: 'react-native-harness',

0 commit comments

Comments
 (0)