Enable Tor Test (without explicit version check)
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Sarah Jamie Lewis 2023-06-14 14:40:13 -07:00
parent 5afd7c8dd8
commit 2ab0456dd5
3 changed files with 3 additions and 4 deletions

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