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
2 changed files with 9 additions and 7 deletions
Showing only changes of commit cccd669608 - Show all commits

View File

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

View File

@ -1,8 +1,10 @@
Feature: Shutdown Cwtch button works correctly
Scenario: Clicking 'Shutdown Cwtch' shuts down Cwtch
Given I wait until the widget with type 'ProfileMgrView' is present
And I tap the button with tooltip 'Shutdown Cwtch'
Then I expect the text 'Shutdown Cwtch?' to be present
#Feature: Shutdown Cwtch button works correctly
# Scenario: Clicking 'Shutdown Cwtch' shuts down Cwtch
# Given I wait until the widget with type 'ProfileMgrView' is present
# And I tap the button with tooltip 'Shutdown Cwtch'
# Then I expect the text 'Shutdown Cwtch?' to be present
# And I wait for 5 seconds
#this also kills the testing framework sadly. will have to find a workaround
#And I tap the button that contains the text 'Shutdown Cwtch'
#Then I wait until the widget with type 'ProfileMgrView' is absent
ub