We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38a06c commit 3995d6dCopy full SHA for 3995d6d
packages/cli/test/utils.ts
@@ -18,5 +18,6 @@ export function createProject(zmodel: string, addPrelude = true) {
18
}
19
20
export function runCli(command: string, cwd: string) {
21
- execSync(`node ${__dirname}/../bin/cli ${command}`, { cwd });
+ const cli = path.join(__dirname, '../dist/index.js');
22
+ execSync(`node ${cli} ${command}`, { cwd });
23
0 commit comments