#include "Base.xcconfig" // Pin code of the iOS device under test IOS_DEVICE_PIN_CODE = // UUID to identify test runs. Should be unique per test device. Generate with for example uuidgen on macOS. TEST_DEVICE_IDENTIFIER_UUID = // Specify whether test device is an iPad or not TEST_DEVICE_IS_IPAD = 0 // Uninstall app after each test suite finish running? UNINSTALL_APP_IN_TEST_SUITE_TEAR_DOWN = 1 // Base64 encoded token for the partner API. Will only be used if account numbers are not configured. // PARTNER_API_TOKEN = // Mullvad accounts used by UI tests HAS_TIME_ACCOUNT_NUMBER = // Note that screenshots tests use the config=MockRelease (which uses a real account), // while UI tests use config=Staging (which uses Stagemole). // the Debug configuration is provided for developer convenience, and uses real accounts. // Ad serving domain used when testing ad blocking. Note that we are assuming there's an HTTP server running on the host. AD_SERVING_DOMAIN = analytics.google.com // A domain which should be reachable. Used to verify Internet connectivity. Must be running a server on port 80. SHOULD_BE_REACHABLE_DOMAIN = mullvad.net // An IP address which should always be reachable. Must be running a server on port 80. SHOULD_BE_REACHABLE_IP_ADDRESS = 45.83.223.209 // Base URL for the firewall API. Note that // will be treated as a comment, therefor you need to insert a ${} between the slashes for example http:/${}/8.8.8.8 FIREWALL_API_BASE_URL = http:/${}/8.8.8.8 // URL for Mullvad provided JSON data with information about the connection. https://am.i.mullvad.net/json for production, https://am.i.stagemole.eu/json for staging. AM_I_JSON_URL = https:/${}/am.i.stagemole.eu/json // Specify whether app logs should be extracted and attached to test report for failing tests ATTACH_APP_LOGS_ON_FAILURE = 0 // Base URL for the packet capture API. Note that // will be treated as a comment, therefor you need to insert a ${} between the slashes for example http:/${}/8.8.8.8 PACKET_CAPTURE_BASE_URL = http:/${}/8.8.8.8