Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"@callstack/react-native-visionos": "0.76 - 0.79",
"@expo/config-plugins": ">=5.0",
"react": "18.2 - 19.1",
"react-native": "0.76 - 0.82 || >=0.83.0-0 <0.83.0",
"react-native": "0.76 - 0.83 || >=0.83.0-0 <0.84.0",
"react-native-macos": "^0.0.0-0 || 0.76 - 0.79",
"react-native-windows": "^0.0.0-0 || 0.76 - 0.80"
},
Expand Down
33 changes: 21 additions & 12 deletions scripts/testing/test-matrix.mts
Original file line number Diff line number Diff line change
Expand Up @@ -338,20 +338,29 @@ if (platforms.length === 0) {
process.exitCode = 1;
showBanner(red("No valid platforms were specified"));
} else {
TEST_VARIANTS.reduce(
(job, variant) => {
return job.then(() =>
withReactNativeVersion(version, async () => {
for (const platform of platforms) {
await buildRunTest({ version, platform, variant });
}
})
);
},
waitForUserInput(
`${TAG} Before continuing, make sure all emulators/simulators and Appium/Metro instances are closed.\n${TAG}\n${TAG} Press any key to continue...`
TEST_VARIANTS.filter((variant) =>
platforms.some((platform) =>
PLATFORM_CONFIG[platform].isAvailable({
version,
platform,
variant,
engine: "hermes",
})
)
)
.reduce(
(job, variant) =>
job.then(() =>
withReactNativeVersion(version, async () => {
for (const platform of platforms) {
await buildRunTest({ version, platform, variant });
}
})
),
waitForUserInput(
`${TAG} Before continuing, make sure all emulators/simulators and Appium/Metro instances are closed.\n${TAG}\n${TAG} Press any key to continue...`
)
)
.then(() => {
showBanner("Initialize new app");
$(
Expand Down
2 changes: 1 addition & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -12349,7 +12349,7 @@ __metadata:
"@callstack/react-native-visionos": 0.76 - 0.79
"@expo/config-plugins": ">=5.0"
react: 18.2 - 19.1
react-native: 0.76 - 0.82 || >=0.83.0-0 <0.83.0
react-native: 0.76 - 0.83 || >=0.83.0-0 <0.84.0
react-native-macos: ^0.0.0-0 || 0.76 - 0.79
react-native-windows: ^0.0.0-0 || 0.76 - 0.80
peerDependenciesMeta:
Expand Down
Loading