Skip to content

Commit

Permalink
[iOS] Swap simulators used for tests to Xcode 16 supported ones
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehickinson committed Sep 19, 2024
1 parent 2332ab9 commit 45457a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/commands/lib/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const runTests = (passthroughArgs, suite, buildConfig, options) => {

if (config.targetOS === 'ios') {
util.run(path.join(config.outputDir, "iossim"), [
"-d", "\"iPhone 14 Pro\"",
"-d", "\"iPhone 16\"",
path.join(config.outputDir, `${suite}.app`),
path.join(config.outputDir, `${suite}.app/PlugIns/${suite}_module.xctest`)
], config.defaultOptions)
Expand Down
2 changes: 1 addition & 1 deletion ios/brave-ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ platform :ios do
defaultScanParams = scan_params()
run_tests(defaultScanParams.merge!({
test_without_building: true,
devices: ["iPhone 15"],
devices: ["iPhone 16"],
ensure_devices_found: true,
skip_testing: skipped_tests()
}))
Expand Down

0 comments on commit 45457a5

Please sign in to comment.