forked from wordpress-mobile/WordPress-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWPUITestCredentials.swift
More file actions
17 lines (16 loc) · 943 Bytes
/
Copy pathWPUITestCredentials.swift
File metadata and controls
17 lines (16 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import UITestsFoundation
// These are fake credentials used for the mocked UI tests
struct WPUITestCredentials {
static let testWPcomUserEmail: String = "t@wp.com"
static let testWPcomUsername: String = "e2eflowtestingmobile"
static let testWPcomPassword: String = "pw"
static let testWPcomSiteAddress: String = "tricountyrealestate.wordpress.com"
static let testWPcomSitePrimaryAddress: String = "tricountyrealestate.wordpress.com"
static let selfHostedUsername: String = "e2eflowtestingmobile"
static let selfHostedPassword: String = "mocked_password"
static let selfHostedSiteAddress: String = "\(WireMock.URL().absoluteString)"
static let signupEmail: String = "e2eflowsignuptestingmobile@example.com"
static let signupUsername: String = "e2eflowsignuptestingmobile"
static let signupDisplayName: String = "Eeflowsignuptestingmobile"
static let signupPassword: String = "mocked_password"
}