Skip to content

Commit 526365f

Browse files
Add Jetpack setup flow AB test case to ABTest enum
1 parent 0a69904 commit 526365f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Experiments/Experiments/ABTest.swift

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ public enum ABTest: String, CaseIterable {
1616
///
1717
case abTestLoginWithWPComOnly = "woocommerceios_login_wpcom_only"
1818

19+
/// A/B test to measure the sign-in success rate when native Jetpack installation experience is enabled
20+
/// Experiment ref:
21+
///
22+
case abTestNativeJetpackSetupFlow = "woocommerceios_login_jetpack_setup_flow"
23+
1924
/// A/B test for the Products Onboarding banner on the My Store dashboard.
2025
/// Experiment ref: pbxNRc-26F-p2
2126
case productsOnboardingBanner = "woocommerceios_products_onboarding_first_product_banner"
@@ -36,7 +41,7 @@ public enum ABTest: String, CaseIterable {
3641
switch self {
3742
case .productsOnboardingBanner, .productsOnboardingTemplateProducts:
3843
return .loggedIn
39-
case .aaTestLoggedOut, .abTestLoginWithWPComOnly:
44+
case .aaTestLoggedOut, .abTestLoginWithWPComOnly, .abTestNativeJetpackSetupFlow:
4045
return .loggedOut
4146
case .null:
4247
return .none

0 commit comments

Comments
 (0)