Open petr-nazarov-yoobic opened 2 years ago
Example: I need to run a command like this:
doppler run --command "node 'node_modules/.bin/jest' '<PATH_TO_TEST_FILE>' -c 'PATH_TO_JS_CONFIG' -t 'Testing Repository should create an entity'"
so that the jest command is inside double-quotes.
The best way I came up with is in settings.json put:
settings.json
"jestrunner.jestCommand": "doppler run --command \"node 'node_modules/.bin/jest'"
but this requires to additionally close the dquote> to run the command.
dquote>
It would be amazing if a jestrunner.jestCommand would support a syntax. like so:
jestrunner.jestCommand
"jestrunner.jestCommand": "doppler run --command \"node 'node_modules/.bin/jest' ${JEST_COMMAND_PARAMETERS} \""
Where:
JEST_COMMAND_PARAMETERS = '<PATH_TO_TEST_FILE>' -c 'PATH_TO_JS_CONFIG' -t 'Testing Repository should create an entity'
Example: I need to run a command like this:
so that the jest command is inside double-quotes.
The best way I came up with is in
settings.json
put:but this requires to additionally close the
dquote>
to run the command.It would be amazing if a
jestrunner.jestCommand
would support a syntax. like so:Where: