adding on more change.
This commit is contained in:
parent
b81ea144b8
commit
e1b44af0fc
1 changed files with 2 additions and 1 deletions
|
|
@ -246,11 +246,12 @@ export class BasePage {
|
||||||
|
|
||||||
async buildExperimentUrl(testData: Partial<ITestData>): Promise<string> {
|
async buildExperimentUrl(testData: Partial<ITestData>): Promise<string> {
|
||||||
|
|
||||||
let experimentsURLExtension = "?cns=all&experiments=";
|
let experimentsURLExtension = "";
|
||||||
|
|
||||||
const { experiments } = testData;
|
const { experiments } = testData;
|
||||||
|
|
||||||
if (experiments !== undefined) {
|
if (experiments !== undefined) {
|
||||||
|
experimentsURLExtension += "?cns=all&experiments="
|
||||||
experimentsURLExtension += experiments?.isMobileFirst
|
experimentsURLExtension += experiments?.isMobileFirst
|
||||||
? "MobileFirstAppointment=MobileFirstAppt_V1=MobileFirstAppt_TEST=true"
|
? "MobileFirstAppointment=MobileFirstAppt_V1=MobileFirstAppt_TEST=true"
|
||||||
: "MobileFirstAppointment=MobileFirstAppt_V1=MobileFirstAppt_CONTROL=true";
|
: "MobileFirstAppointment=MobileFirstAppt_V1=MobileFirstAppt_CONTROL=true";
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue