cypress/support/helpers/getAppEnv.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export default () => {
  const env = Cypress.env('APP_ENV');
  return env === 'stage' ? 'test' : env;
};