Upgrade Cwtch, Update Languages, Fix DeleteContact flow, various smaller fixes #686

Merged
sarah merged 7 commits from 1.12-rc into trunk 2023-06-14 21:54:58 +00:00
3 changed files with 3 additions and 4 deletions
Showing only changes of commit 2ab0456dd5 - Show all commits

View File

@ -66,8 +66,8 @@ steps:
- name: deps
path: /root/.pub-cache
commands:
# Run 01_general, 02_global_settings, and 04_profile_mgmt features...
- ./run-tests-headless.sh "01_general|02_global_settings|04_profile_mgmt"
# Run 01_general, 01_tor, 02_global_settings, and 04_profile_mgmt features...
- ./run-tests-headless.sh "01_general|01_tor|02_global_settings|04_profile_mgmt"
- name: test-build-android
image: openpriv/flutter-desktop:linux-fstable-3.10.2

View File

@ -2,7 +2,6 @@ Feature: Tor initializes correctly
Scenario: Check the Tor version
Given I wait until the widget with type 'ProfileMgrView' is present
And I tap the icon with type "TorIcon"
Then I expect the string '0.4.' to be present within 120 seconds
And I expect the string 'Online' to be present within 120 seconds
Scenario: Reset Tor

View File

@ -122,7 +122,7 @@ StepDefinitionGeneric ExpectTextToBePresent() {
(key, seconds, context) async {
await context.world.appDriver.waitUntil(
() async {
//await context.world.appDriver.waitForAppToSettle();
await context.world.appDriver.waitForAppToSettle();
return context.world.appDriver.isPresent(
context.world.appDriver.findBy(key, FindType.text),