diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-04-29 15:00:25 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-29 15:00:25 -0700 |
commit | 28fc98d942ac40ca701aca244472afe4860d9467 (patch) | |
tree | f2e035afa009e0d6a5f46ba0edf93a82d543cc1d /__e2e__ | |
parent | 599dab1c7a46576ecc225e49e21f1f8e9674af5b (diff) | |
download | voidsky-28fc98d942ac40ca701aca244472afe4860d9467.tar.zst |
Release 1.80 (#3757)
* Test fixes * Intl extract
Diffstat (limited to '__e2e__')
-rw-r--r-- | __e2e__/tests/curate-lists.test.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/__e2e__/tests/curate-lists.test.ts b/__e2e__/tests/curate-lists.test.ts index 2c44fa5df..635357b8d 100644 --- a/__e2e__/tests/curate-lists.test.ts +++ b/__e2e__/tests/curate-lists.test.ts @@ -1,8 +1,9 @@ /* eslint-env detox/detox */ -import {describe, beforeAll, it} from '@jest/globals' +import {beforeAll, describe, it} from '@jest/globals' import {expect} from 'detox' -import {openApp, loginAsAlice, loginAsBob, createServer, sleep} from '../util' + +import {createServer, loginAsAlice, loginAsBob, openApp, sleep} from '../util' describe('Curate lists', () => { beforeAll(async () => { @@ -115,6 +116,7 @@ describe('Curate lists', () => { await element(by.text('About')).tap() await element(by.id('addUserBtn')).tap() await expect(element(by.id('listAddUserModal'))).toBeVisible() + await element(by.id('searchInput')).typeText('b') await waitFor(element(by.id('user-bob.test-addBtn'))) .toBeVisible() .withTimeout(5000) |