Wizard: Expose beta features in qa environment

The QE team has requested that all beta features be exposed in the
ephemeral environment (insights.chrome.getEnvironment() === 'qa').
This commit is contained in:
lucasgarfield 2023-03-15 14:26:57 +01:00 committed by Lucas Garfield
parent 0363ad7611
commit 4c2a410dd7
7 changed files with 24 additions and 11 deletions

View file

@ -545,6 +545,9 @@ beforeAll(() => {
isProd: () => {
return true;
},
getEnvironment: () => {
return 'prod';
},
},
};
});

View file

@ -140,6 +140,9 @@ beforeAll(() => {
isProd: () => {
return true;
},
getEnvironment: () => {
return 'prod';
},
},
};
});