Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions e2e/Orientation.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ describe.e2e(':ios: orientation', () => {
await expect(element(by.id(TestIDs.LANDSCAPE_ELEMENT))).toBeVisible();
await device.setOrientation('portrait');
await expect(element(by.id(TestIDs.LANDSCAPE_ELEMENT))).toBeVisible();
await device.setOrientation('landscape');
await expect(element(by.id(TestIDs.LANDSCAPE_ELEMENT))).toBeVisible();
await elementById(TestIDs.DISMISS_BTN).tap();
await device.setOrientation('portrait');
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@
"type": "ios.simulator",
"device": {
"type": "iPhone 13 Pro Max",
"os": "15.5"
"os": "18.5"
}
},
"genymotion.emulator.name": {
Expand Down
2 changes: 1 addition & 1 deletion scripts/test-unit.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,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 13', '18.5');
}

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