(name: string, folder?: WorkspaceFolder)
| 23 | * Gets a command to run a script |
| 24 | */ |
| 25 | export const getRunScriptCommand = async (name: string, folder?: WorkspaceFolder) => { |
| 26 | const scriptRunner = await getScriptRunner(folder); |
| 27 | return `${scriptRunner} ${scriptRunner === 'node' ? '--run' : 'run'} ${name}`; |
| 28 | }; |
no test coverage detected