There is an exported env-variable X
:
X="-t \"2 2.1\""
The following command is parsed wrong when using this variable:
yarn jest $X
yarn jest -t '"2' '2.1"'
Instead of:
yarn jest -t "2 2.1"
I have read a-lot of similar questions but none of them worked. Any help?