Skip to content

Commit

Permalink
iPhone 15 os latest
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgn committed Mar 31, 2024
1 parent f7aa750 commit a2dcb28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion e2e/iOSUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { execSync } from 'shell-utils/src/exec';
const utils = {
setDemoMode: () => {
execSync(
'xcrun simctl status_bar "iPhone 13" override --time "12:00" --batteryState charged --batteryLevel 100 --wifiBars 3 --cellularMode active --cellularBars 4'
'xcrun simctl status_bar "iPhone 15" override --time "12:00" --batteryState charged --batteryLevel 100 --wifiBars 3 --cellularMode active --cellularBars 4'
);
},
};
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,7 @@
"simulator": {
"type": "ios.simulator",
"device": {
"type": "iPhone 13 Pro Max",
"os": "15.5"
"type": "iPhone 15 Pro Max"
}
},
"genymotion.emulator.name": {
Expand Down Expand Up @@ -200,7 +199,7 @@
"ios.none": {
"binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
"type": "ios.none",
"name": "iPhone 13",
"name": "iPhone 15",
"session": {
"server": "ws://localhost:8099",
"sessionId": "playground"
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-snapshot.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function runAndroidSnapshotTests() { }
function runIosSnapshotTests() {
exec.execSync('npm run build');
exec.execSync('npm run pod-install');
testTarget(RECORD ? 'SnapshotRecordTests' : 'SnapshotTests', 'iPhone 13', '15.5');
testTarget(RECORD ? 'SnapshotRecordTests' : 'SnapshotTests', 'iPhone 15');
}

function testTarget(scheme, device, OS = 'latest') {
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function runAndroidUnitTests() {
function runIosUnitTests() {
exec.execSync('npm run build');
exec.execSync('npm run pod-install');
testTarget('playground', 'iPhone 13', '15.5');
testTarget('playground', 'iPhone 15');
}

function testTarget(scheme, device, OS = 'latest') {
Expand Down

0 comments on commit a2dcb28

Please sign in to comment.