File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
dotcom-rendering/src/experiments Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 1
1
import type { ABTest } from '@guardian/ab-core' ;
2
2
import { abTestTest } from './tests/ab-test-test' ;
3
3
import { auxiaSignInGate } from './tests/auxia-sign-in-gate' ;
4
+ import { googleOneTap } from './tests/google-one-tap' ;
4
5
import { signInGateMainControl } from './tests/sign-in-gate-main-control' ;
5
6
import { signInGateMainVariant } from './tests/sign-in-gate-main-variant' ;
6
7
import { userBenefitsApi } from './tests/user-benefits-api' ;
@@ -13,4 +14,5 @@ export const tests: ABTest[] = [
13
14
signInGateMainControl ,
14
15
userBenefitsApi ,
15
16
auxiaSignInGate ,
17
+ googleOneTap ,
16
18
] ;
Original file line number Diff line number Diff line change
1
+ import type { ABTest } from '@guardian/ab-core' ;
2
+
3
+ export const googleOneTap : ABTest = {
4
+ id : 'GoogleOneTap' ,
5
+ start : '2025-07-30' ,
6
+ expiry : '2025-12-01' ,
7
+ author : 'Ash (Identity & Trust)' ,
8
+ description :
9
+ 'This test is being used to prototype and roll out single sign-on with Google One Tap.' ,
10
+ audience : 0 ,
11
+ audienceOffset : 0 ,
12
+ successMeasure :
13
+ 'There are no new client side errors and the users are able to sign in with Google One Tap' ,
14
+ audienceCriteria : 'Signed-out Chrome Users on Fronts' ,
15
+ idealOutcome :
16
+ 'Increased sign in conversion rate for users who have Google accounts and Chrome' ,
17
+ showForSensitive : false ,
18
+ canRun : ( ) => true ,
19
+ variants : [
20
+ {
21
+ id : 'variant' ,
22
+ test : ( ) : void => { } ,
23
+ } ,
24
+ ] ,
25
+ } ;
You can’t perform that action at this time.
0 commit comments