diff --git a/.qoder/settings.local.json b/.qoder/settings.local.json new file mode 100755 index 0000000..e25e79b --- /dev/null +++ b/.qoder/settings.local.json @@ -0,0 +1,7 @@ +{ + "permissions": { + "allow": [ + "WebFetch(*)" + ] + } +} diff --git a/packages/cli/src/commands/e2e.ts b/packages/cli/src/commands/e2e.ts index f8294eb..ecfd6ce 100755 --- a/packages/cli/src/commands/e2e.ts +++ b/packages/cli/src/commands/e2e.ts @@ -52,7 +52,8 @@ function runCmd(label: string, cmd: string, args: string[], cwd?: string, timeou */ function runTest(label: string, testPath: string): { pass: boolean; detail: string } { const bun = findBun() - return runCmd(label, bun, ['test', testPath]) + const paths = testPath.split(' ').filter(p => p.length > 0) + return runCmd(label, bun, ['test', ...paths]) } export function e2eCommand(): void {