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:
parent
0363ad7611
commit
4c2a410dd7
7 changed files with 24 additions and 11 deletions
|
|
@ -545,6 +545,9 @@ beforeAll(() => {
|
|||
isProd: () => {
|
||||
return true;
|
||||
},
|
||||
getEnvironment: () => {
|
||||
return 'prod';
|
||||
},
|
||||
},
|
||||
};
|
||||
});
|
||||
|
|
|
|||
|
|
@ -140,6 +140,9 @@ beforeAll(() => {
|
|||
isProd: () => {
|
||||
return true;
|
||||
},
|
||||
getEnvironment: () => {
|
||||
return 'prod';
|
||||
},
|
||||
},
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue