Skip to content

Commit

Permalink
fix: remove quotes from execution
Browse files Browse the repository at this point in the history
  • Loading branch information
marsidev committed Sep 4, 2022
1 parent 5caa7af commit cd31fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/helpers.ts
Expand Up @@ -7,7 +7,7 @@ import { remove } from '../src/utils/fs'
const CLI_PATH = join(__dirname, '../dist/index.mjs')

export const run = async (args: string[], options: SyncOptions = {}) => {
return await execa(`node "${CLI_PATH}" ${args.join(' ')}`, options)
return await execa(`node ${CLI_PATH} ${args.join(' ')}`, options)
}

export const cleanup = () => {
Expand Down

0 comments on commit cd31fc9

Please sign in to comment.