I want to pass mutilple CLI arguments through npm to codeceptJS.
E.g. we use tags for device specific tests and we have different test environments. I want to do:
"e2e": "codeceptjs run --steps -c path/to/config.js --grep --profile"
So I could pass in:
npm run e2e @iPhoneX env=qa
I've tried multiple combinations but can't get it to work with both grep and profile. Any ideas?