Skip to content

Commit 041b824

Browse files
committed
fix: always use iphone 15 for detox iOS tests
1 parent 5b48634 commit 041b824

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

.detoxrc.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
// run iPhone 14 on local machine, iPhone 15 Pro on mac mini
2-
const iOSDevice = process.env.MACMINI ? 'iPhone 15 Pro' : 'iPhone 14';
3-
41
const reversePorts = [3003, 8080, 8081, 9735, 10009, 28334, 28335, 28336, 30001, 39388, 43782, 60001];
52

63
/** @type {Detox.DetoxConfig} */
@@ -47,7 +44,7 @@ module.exports = {
4744
simulator: {
4845
type: 'ios.simulator',
4946
device: {
50-
type: iOSDevice,
47+
type: 'iPhone 15',
5148
},
5249
},
5350
emulator: {

.github/workflows/e2e-ios.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ concurrency:
1111
env:
1212
E2E_TESTS: 1 # build without transform-remove-console babel plugin
1313
DEBUG: 'lnurl* lnurl server'
14-
MACMINI: 1 # use iPhone 15 in .detoxrc
1514

1615
jobs:
1716
e2e:

0 commit comments

Comments
 (0)