From bc1ead9424039a3686a1be0a516c7dc7feb1d9d1 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:26:00 +0100 Subject: [PATCH 01/15] Add script to run E2E tests --- bin/test-e2e.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 bin/test-e2e.sh diff --git a/bin/test-e2e.sh b/bin/test-e2e.sh new file mode 100755 index 0000000000..51768d6bcc --- /dev/null +++ b/bin/test-e2e.sh @@ -0,0 +1,24 @@ +#!/bin/bash -e + +set -o pipefail + +# Using the ':' operator with ':=' to check if a variable is set. +# If the variable is unset or null, the value after ':=' is assigned to it. +: ${IOS_APP_PATH:='./gutenberg/packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator/GutenbergDemo.app'} +: ${WDA_PATH:='./gutenberg/packages/react-native-editor/ios/build/WDA'} +: ${ANDROID_APP_PATH:='./gutenberg/packages/react-native-editor/android/app/build/outputs/apk/debug/app-debug.apk'} + +export IOS_APP_PATH +export WDA_PATH +export ANDROID_APP_PATH + +export APPIUM_HOME=~/.appium +export NODE_ENV=test + +# Check for debug mode +if [ "$1" == "--debug" ]; then + shift # Remove first argument + node $NODE_DEBUG_OPTION --inspect-brk node_modules/jest/bin/jest --runInBand --detectOpenHandles --verbose --config jest_ui.config.js "$@" +else + cross-env jest --config ./jest_ui.config.js --maxWorkers 1 "$@" +fi From 6d998a89fcbe35a5c0667c90b5cae3e53f0e93ba Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:26:36 +0100 Subject: [PATCH 02/15] Migrate device tests scripts to use the newly added ./bin/test-e2e.sh script --- package.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 9994294019..de2d16df74 100644 --- a/package.json +++ b/package.json @@ -84,11 +84,11 @@ "test": "cross-env NODE_ENV=test jest --config ./jest.config.js", "test:update": "cross-env NODE_ENV=test jest --config ./jest.config.js --updateSnapshot", "test:debug": "cross-env NODE_ENV=test node --inspect-brk node_modules/.bin/jest --runInBand --verbose --config jest.config.js", - "device-tests": "cross-env NODE_ENV=test jest --maxWorkers=2 --testPathIgnorePatterns='canary|gutenberg-editor-rendering|ipad' --config jest_ui.config.js", - "device-tests-canary": "cross-env NODE_ENV=test jest --maxWorkers=2 --testPathPattern=@canary --config jest_ui.config.js", - "device-tests-ipad": "cross-env NODE_ENV=test IPAD=true jest --maxWorkers=2 --testPathPattern=@ipad --config jest_ui.config.js", - "device-tests:local": "APPIUM_HOME=~/.appium IOS_APP_PATH='./gutenberg/packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator/GutenbergDemo.app' WDA_PATH='./gutenberg/packages/react-native-editor/ios/build/WDA' ANDROID_APP_PATH='./gutenberg/packages/react-native-editor/android/app/build/outputs/apk/debug/app-debug.apk' NODE_ENV=test jest --maxWorkers=2 --detectOpenHandles --config jest_ui.config.js", - "device-tests:debug": "IOS_APP_PATH='./gutenberg/packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator/GutenbergDemo.app' WDA_PATH='./gutenberg/packages/react-native-editor/ios/build/WDA' ANDROID_APP_PATH='./gutenberg/packages/react-native-editor/android/app/build/outputs/apk/debug/app-debug.apk' cross-env NODE_ENV=test node $NODE_DEBUG_OPTION --inspect-brk node_modules/jest/bin/jest --runInBand --detectOpenHandles --verbose --config jest_ui.config.js", + "device-tests": "./bin/test-e2e.sh --testPathIgnorePatterns='canary|gutenberg-editor-rendering|ipad'", + "device-tests-canary": "./bin/test-e2e.sh --testPathPattern=@canary", + "device-tests-ipad": "IPAD=true ./bin/test-e2e.sh --testPathPattern=@ipad", + "device-tests:local": "./bin/test-e2e.sh --detectOpenHandles", + "device-tests:debug": "./bin/test-e2e.sh --debug --runInBand --detectOpenHandles --verbose", "test:e2e:bundle:android": "npm run test:e2e:bundle:android:text && npm run test:e2e:bundle:android:bytecode", "test:e2e:bundle:android:text": "mkdir -p gutenberg/packages/react-native-editor/android/app/src/main/assets && npm run rn-bundle -- --reset-cache --platform android --dev false --minify false --entry-file index.js --bundle-output gutenberg/packages/react-native-editor/android/app/src/main/assets/index.android.text.bundle --assets-dest gutenberg/packages/react-native-editor/android/app/src/main/res", "test:e2e:bundle:android:bytecode": "./gutenberg/node_modules/react-native/sdks/hermesc/`node -e \"const platform=require('os').platform();console.log(platform === 'darwin' ? 'osx-bin' : (platform === 'linux' ? 'linux64-bin' : (platform === 'win32' ? 'win64-bin' : 'unsupported-os')));\"`/hermesc -emit-binary -O -out gutenberg/packages/react-native-editor/android/app/src/main/assets/index.android.bundle gutenberg/packages/react-native-editor/android/app/src/main/assets/index.android.text.bundle -output-source-map", From c0480c70ba81db8c7daca920e8fcc508b17e554e Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:28:57 +0100 Subject: [PATCH 03/15] Update build-ios script to remove SauceLabs usage --- .buildkite/commands/build-ios.sh | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/.buildkite/commands/build-ios.sh b/.buildkite/commands/build-ios.sh index 18a7d7f833..377758d180 100755 --- a/.buildkite/commands/build-ios.sh +++ b/.buildkite/commands/build-ios.sh @@ -5,8 +5,6 @@ npm ci --unsafe-perm --prefer-offline --no-audit --no-progress echo '--- :ios: Set env var for iOS E2E testing' set -x -export TEST_RN_PLATFORM=ios -export TEST_ENV=sauce CONFIG_FILE="$(pwd)/gutenberg/packages/react-native-editor/__device-tests__/helpers/device-config.json" # Uses the local deviceName since SauceLabs uses a different one. IOS_DEVICE_NAME=$(jq -r '.ios.local.deviceName' "$CONFIG_FILE") @@ -22,17 +20,23 @@ npm run core test:e2e:build-app:ios echo '--- :react: Build iOS bundle for E2E testing' npm run test:e2e:bundle:ios -echo '--- :compression: Prepare artifact for SauceLabs upload' +echo "--- :react: Prepare tests setup" +npm run core test:e2e:setup + +echo '--- :react: Build WDA for E2E testing' +npm run core test:e2e:build-wda + +echo '--- :compression: Prepare artifacts' WORK_DIR=$(pwd) \ && pushd ./gutenberg/packages/react-native-editor/ios/build/GutenbergDemo/Build/Products/Release-iphonesimulator \ && zip -r "$WORK_DIR/gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip" GutenbergDemo.app \ && popd -echo '--- :saucelabs: Upload app artifact to SauceLabs' -SAUCE_FILENAME=${BUILDKITE_BRANCH//[\/]/-} -curl -u "$SAUCE_USERNAME:$SAUCE_ACCESS_KEY" \ - --location \ - --request POST 'https://api.us-west-1.saucelabs.com/v1/storage/upload' \ - --form 'payload=@"./gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip"' \ - --form "name=Gutenberg-$SAUCE_FILENAME.app.zip" \ - --form 'description="Gutenberg"' +WORK_DIR=$(pwd) \ + && pushd ./gutenberg/packages/react-native-editor/ios/build/WDA \ + && zip -r "$WORK_DIR/gutenberg/packages/react-native-editor/ios/WDA.zip" ./* \ + && popd + +echo "--- :arrow_up: Upload Build Products" +upload_artifact "./gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip" +upload_artifact "./gutenberg/packages/react-native-editor/ios/WDA.zip" From 34577dac9fa2aaae88f0e9781e357f184d0460f9 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:39:18 +0100 Subject: [PATCH 04/15] build-ios export platform version for WDA build --- .buildkite/commands/build-ios.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.buildkite/commands/build-ios.sh b/.buildkite/commands/build-ios.sh index 377758d180..af532a9678 100755 --- a/.buildkite/commands/build-ios.sh +++ b/.buildkite/commands/build-ios.sh @@ -6,9 +6,8 @@ npm ci --unsafe-perm --prefer-offline --no-audit --no-progress echo '--- :ios: Set env var for iOS E2E testing' set -x CONFIG_FILE="$(pwd)/gutenberg/packages/react-native-editor/__device-tests__/helpers/device-config.json" -# Uses the local deviceName since SauceLabs uses a different one. IOS_DEVICE_NAME=$(jq -r '.ios.local.deviceName' "$CONFIG_FILE") -IOS_PLATFORM_VERSION=$(jq -r '.ios.buildkite.platformVersion' "$CONFIG_FILE") +export IOS_PLATFORM_VERSION=$(jq -r '.ios.buildkite.platformVersion' "$CONFIG_FILE") # Set a destination different from the hardcoded one which only works in the # older Xcode-setup used by CircleCI export RN_EDITOR_E2E_IOS_DESTINATION="platform=iOS Simulator,name=$IOS_DEVICE_NAME,OS=$IOS_PLATFORM_VERSION" From b54ad2c1c04b50d1a86d1d1033284382e111add9 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:39:42 +0100 Subject: [PATCH 05/15] Remove usage of Buildkite for test-ios --- .buildkite/commands/test-ios.sh | 47 ++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/.buildkite/commands/test-ios.sh b/.buildkite/commands/test-ios.sh index 126ef185fc..5999698f73 100755 --- a/.buildkite/commands/test-ios.sh +++ b/.buildkite/commands/test-ios.sh @@ -1,5 +1,9 @@ #!/bin/bash -eu +CONFIG_FILE="$(pwd)/gutenberg/packages/react-native-editor/__device-tests__/helpers/device-config.json" +DEVICE_NAME=$(jq -r '.ios.local.deviceName' "$CONFIG_FILE") +DEVICE_TABLET_NAME=$(jq -r '.ios.local.deviceTabletName' "$CONFIG_FILE") + MODE="iphone" INPUT="${1-}" while [ "$INPUT" != "" ]; do @@ -19,33 +23,46 @@ while [ "$INPUT" != "" ]; do INPUT="${1-}" done -echo '--- :node: Setup Node depenendencies' +if [ "$MODE" == 'canary' ]; then + SECTION='--- :gutenberg-mobile: Test iOS Canary Pages' + TESTS_CMD='device-tests-canary' +elif [ "$MODE" == "ipad" ]; then + SECTION='--- :gutenberg-mobile: Test iOS iPad' + DEVICE_NAME=$DEVICE_TABLET_NAME + TESTS_CMD='device-tests-ipad' +else + SECTION='--- :gutenberg-mobile: Test iOS iPhone' + TESTS_CMD='device-tests' +fi + +echo "--- :apple_logo: Start booting up simulator" +xcrun simctl boot "$DEVICE_NAME" & + +echo "--- 📦 Downloading Build Artifacts" +export APP_PATH=./gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip +download_artifact "GutenbergDemo.app.zip" "$APP_PATH" + +export WDA_PATH=./gutenberg/packages/react-native-editor/ios/build/WDA +download_artifact "WDA.zip" "$WDA_PATH/WDA.zip" +unzip "$WDA_PATH/WDA.zip" -d "$WDA_PATH" + +echo '--- :node: Setup Node dependencies' npm ci --prefer-offline --no-audit --ignore-scripts npm ci --prefix gutenberg --prefer-offline --no-audit echo '--- :ios: Set env var for iOS E2E testing' set -x export TEST_RN_PLATFORM=ios -export TEST_ENV=sauce +export TEST_ENV=buildkite export JEST_JUNIT_OUTPUT_FILE="reports/test-results/ios-test-results.xml" -# This is a relic of the CircleCI setup. -# It should be removed once the migration to Buildkite is completed. -export CIRCLE_BRANCH=${BUILDKITE_BRANCH} set +x -if [ "$MODE" == 'canary' ]; then - SECTION='--- :saucelabs: Test iOS Canary Pages' - TESTS_CMD='device-tests-canary' -elif [ "$MODE" == "ipad" ]; then - SECTION='--- :saucelabs: Test iOS iPad' - TESTS_CMD='device-tests-ipad' -else - SECTION='--- :saucelabs: Test iOS iPhone' - TESTS_CMD='device-tests' -fi +echo "--- :gutenberg-mobile: Prepare tests setup" +npm run core test:e2e:setup set +e echo "$SECTION" + npm run "$TESTS_CMD" TESTS_EXIT_CODE=$? set -e From a667d0055f93379e82cc1c2e9c50bd57cd7965ff Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:43:00 +0100 Subject: [PATCH 06/15] Update Buildkite pipeline to remove SauceLabs references it also adds ios screen recordings path to the artifacts --- .buildkite/pipeline.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 447f6ea910..4aaff23112 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -175,8 +175,8 @@ steps: queue: mac env: *xcode_agent_env - - label: iOS Build and Sauce Labs - key: ios-build-and-saucelabs + - label: iOS Build + key: ios-build depends_on: - lint - ios-unit-tests @@ -192,7 +192,7 @@ steps: env: *xcode_agent_env - label: Test iOS on Device – Canary Pages - depends_on: ios-build-and-saucelabs + depends_on: ios-build command: .buildkite/commands/test-ios.sh --canary plugins: - *ci_toolkit_plugin @@ -200,6 +200,7 @@ steps: - *git-cache-plugin artifact_paths: - reports/test-results/ios-test-results.xml + - ios-screen-recordings/* agents: queue: mac env: *xcode_agent_env @@ -212,13 +213,13 @@ steps: if: *is_branch_for_quick_ui_tests key: run-full-ui-test prompt: "Run full UI tests suites?" - depends_on: ios-build-and-saucelabs + depends_on: ios-build - label: Test iOS on Device – Full iPhone # The quick UI tests suite version depends on the block step being unblocked if: *is_branch_for_quick_ui_tests depends_on: - - ios-build-and-saucelabs + - ios-build - run-full-ui-test command: .buildkite/commands/test-ios.sh plugins: @@ -227,6 +228,7 @@ steps: - *git-cache-plugin artifact_paths: - reports/test-results/ios-test-results.xml + - ios-screen-recordings/* agents: queue: mac env: *xcode_agent_env @@ -236,7 +238,7 @@ steps: # The full UI tests suite version depends only on the ios-build step, meaning it has no manual step that triggers it if: *is_branch_for_full_ui_tests depends_on: - - ios-build-and-saucelabs + - ios-build command: .buildkite/commands/test-ios.sh plugins: - *ci_toolkit_plugin @@ -252,7 +254,7 @@ steps: # The quick UI tests suite version depends on the block step being unblocked if: *is_branch_for_quick_ui_tests depends_on: - - ios-build-and-saucelabs + - ios-build - run-full-ui-test command: .buildkite/commands/test-ios.sh --ipad plugins: @@ -261,6 +263,7 @@ steps: - *git-cache-plugin artifact_paths: - reports/test-results/ios-test-results.xml + - ios-screen-recordings/* agents: queue: mac env: *xcode_agent_env @@ -269,7 +272,7 @@ steps: # The full UI tests suite version depends only on the ios-build step, meaning it has no manual step that triggers it if: *is_branch_for_full_ui_tests depends_on: - - ios-build-and-saucelabs + - ios-build command: .buildkite/commands/test-ios.sh --ipad plugins: - *ci_toolkit_plugin @@ -277,6 +280,7 @@ steps: - *git-cache-plugin artifact_paths: - reports/test-results/ios-test-results.xml + - ios-screen-recordings/* agents: queue: mac env: *xcode_agent_env From 6b30ad05d1664af0237f7e9845450bf79c0fd3bb Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:43:42 +0100 Subject: [PATCH 07/15] Update Gutenberg ref --- gutenberg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gutenberg b/gutenberg index c2717e1572..4bd5ee6488 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit c2717e157278f45638e22f01a74866ab9f3865a2 +Subproject commit 4bd5ee64888654d9f014dd8866e750a0013416e1 From 1dd6c32a6ef7656bc327262da95b545a8d2841cc Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:44:11 +0100 Subject: [PATCH 08/15] Temp: Disable depends on to speed up testing the new changes --- .buildkite/pipeline.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 4aaff23112..5c07ac7895 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -177,9 +177,9 @@ steps: - label: iOS Build key: ios-build - depends_on: - - lint - - ios-unit-tests + # depends_on: + # - lint + # - ios-unit-tests command: .buildkite/commands/build-ios.sh plugins: - *ci_toolkit_plugin From b3c3aebce09f2a84a27179bca55a52ae05c99035 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 17:47:00 +0100 Subject: [PATCH 09/15] Update iOS app env variable name --- .buildkite/commands/test-ios.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/commands/test-ios.sh b/.buildkite/commands/test-ios.sh index 5999698f73..9cf61d1760 100755 --- a/.buildkite/commands/test-ios.sh +++ b/.buildkite/commands/test-ios.sh @@ -39,8 +39,8 @@ echo "--- :apple_logo: Start booting up simulator" xcrun simctl boot "$DEVICE_NAME" & echo "--- 📦 Downloading Build Artifacts" -export APP_PATH=./gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip -download_artifact "GutenbergDemo.app.zip" "$APP_PATH" +export IOS_APP_PATH=./gutenberg/packages/react-native-editor/ios/GutenbergDemo.app.zip +download_artifact "GutenbergDemo.app.zip" "$IOS_APP_PATH" export WDA_PATH=./gutenberg/packages/react-native-editor/ios/build/WDA download_artifact "WDA.zip" "$WDA_PATH/WDA.zip" From 74a835c5268b1534bd6ca3f74ddca4f35d4be68a Mon Sep 17 00:00:00 2001 From: Tony Li Date: Thu, 2 Nov 2023 14:53:54 +1300 Subject: [PATCH 10/15] Use HTTP1.1 to download nodejs package --- .buildkite/pipeline.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 5c07ac7895..8385674750 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -22,7 +22,9 @@ x-common-params: - 'AWS_ACCESS_KEY' - 'AWS_SECRET_KEY' - &nvm_plugin - automattic/nvm#0.2.1 + automattic/nvm#0.3.0: + # This is an attempt to fix curl error (92) during installing nodejs. + curlrc: --http1.1 - &ci_toolkit_plugin automattic/a8c-ci-toolkit#2.18.2 - &xcode_agent_env From 54db14850645416a1047058c635528c95df8a847 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 20:02:36 +0100 Subject: [PATCH 11/15] Fix typo --- .buildkite/commands/build-ios.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/commands/build-ios.sh b/.buildkite/commands/build-ios.sh index af532a9678..84266aa348 100755 --- a/.buildkite/commands/build-ios.sh +++ b/.buildkite/commands/build-ios.sh @@ -1,6 +1,6 @@ #!/bin/bash -eu -echo '--- :node: Setup Node depenendencies' +echo '--- :node: Setup Node dependencies' npm ci --unsafe-perm --prefer-offline --no-audit --no-progress echo '--- :ios: Set env var for iOS E2E testing' From 4d46cd4c2bba50c825836f36b5020f4d39db2c11 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 20:02:55 +0100 Subject: [PATCH 12/15] Fix comments --- .buildkite/commands/test-ios.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.buildkite/commands/test-ios.sh b/.buildkite/commands/test-ios.sh index 9cf61d1760..08db2ca304 100755 --- a/.buildkite/commands/test-ios.sh +++ b/.buildkite/commands/test-ios.sh @@ -24,14 +24,14 @@ while [ "$INPUT" != "" ]; do done if [ "$MODE" == 'canary' ]; then - SECTION='--- :gutenberg-mobile: Test iOS Canary Pages' + SECTION='--- :react: Test iOS Canary Pages' TESTS_CMD='device-tests-canary' elif [ "$MODE" == "ipad" ]; then - SECTION='--- :gutenberg-mobile: Test iOS iPad' + SECTION='--- :react: Test iOS iPad' DEVICE_NAME=$DEVICE_TABLET_NAME TESTS_CMD='device-tests-ipad' else - SECTION='--- :gutenberg-mobile: Test iOS iPhone' + SECTION='--- :react: Test iOS iPhone' TESTS_CMD='device-tests' fi @@ -57,7 +57,7 @@ export TEST_ENV=buildkite export JEST_JUNIT_OUTPUT_FILE="reports/test-results/ios-test-results.xml" set +x -echo "--- :gutenberg-mobile: Prepare tests setup" +echo "--- :react: Prepare tests setup" npm run core test:e2e:setup set +e From da54fbe6b8de801a41f40690064657d8f1feaef0 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 20:03:02 +0100 Subject: [PATCH 13/15] Add forceExit --- bin/test-e2e.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/test-e2e.sh b/bin/test-e2e.sh index 51768d6bcc..7c8995bdcc 100755 --- a/bin/test-e2e.sh +++ b/bin/test-e2e.sh @@ -20,5 +20,5 @@ if [ "$1" == "--debug" ]; then shift # Remove first argument node $NODE_DEBUG_OPTION --inspect-brk node_modules/jest/bin/jest --runInBand --detectOpenHandles --verbose --config jest_ui.config.js "$@" else - cross-env jest --config ./jest_ui.config.js --maxWorkers 1 "$@" + cross-env jest --config ./jest_ui.config.js --maxWorkers 1 --forceExit "$@" fi From 5d1435a4f3a8488b5d4830d67bf5f1a0f132099b Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 20:03:11 +0100 Subject: [PATCH 14/15] Update Gutenberg ref --- gutenberg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gutenberg b/gutenberg index 4bd5ee6488..b5efbb0fdd 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit 4bd5ee64888654d9f014dd8866e750a0013416e1 +Subproject commit b5efbb0fddc66f3f59cd6828b42314f9213a205e From 68569f693aea23e3e27af7a81fecb9eb1bbdfb20 Mon Sep 17 00:00:00 2001 From: Gerardo Date: Thu, 2 Nov 2023 21:51:21 +0100 Subject: [PATCH 15/15] Update Gutenberg ref --- gutenberg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gutenberg b/gutenberg index b5efbb0fdd..2567f25b38 160000 --- a/gutenberg +++ b/gutenberg @@ -1 +1 @@ -Subproject commit b5efbb0fddc66f3f59cd6828b42314f9213a205e +Subproject commit 2567f25b38f247cc5d8889eebcb6d4f23fa21ddf