import {IS_ACCEPTANCE_TEST} from 'app/constants'; /** * Return a specified "fixed" string when we are in a testing environment * (more specifically, when `IS_ACCEPTANCE_TEST` is true) */ export default function getDynamicText({ value, fixed, }: { value: Value; fixed: Fixed; }): Value | Fixed { return IS_ACCEPTANCE_TEST ? fixed : value; }