Release 1.80 (#3757)

* Test fixes

* Intl extract
This commit is contained in:
Paul Frazee 2024-04-29 15:00:25 -07:00 committed by GitHub
parent 599dab1c7a
commit 28fc98d942
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 10370 additions and 9234 deletions

View file

@ -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)