Skip to content

Commit eb978f6

Browse files
committed
Merge branch 'test2' into stop
2 parents 3ff088b + ce2979a commit eb978f6

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-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:

e2e/slashtags.e2e.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ d('Profile and Contacts', () => {
8888

8989
await element(by.id('LinkLabelInput')).typeText('LINK-LABEL');
9090
await element(by.id('LinkValueInput')).typeText('link-value');
91+
await element(by.id('LinkLabelInput')).tapReturnKey();
92+
await sleep(200); // keyboard animation
9193
await element(by.id('SaveLink')).tap();
9294
await waitFor(element(by.id('SaveLink'))).not.toBeVisible();
9395
await expect(element(by.text('LINK-LABEL'))).toExist();

0 commit comments

Comments
 (0)