Skip to content

Commit 0a93ca5

Browse files
pRizzclaude
andcommitted
fix: correct --cwd position in test-opencode-unit recipe
`bun turbo test --cwd packages/opencode` fails because bun resolves `turbo` from the root workspace before changing directory. Place `--cwd` immediately after `bun` to match the working pattern used by lint-opencode. Also drop the OPENCODE_CONFIG_CONTENT env prefix since auth disabling now lives in test/preload.ts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent eea383a commit 0a93ca5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ test-opencode-ui: opencode-install-if-needed
154154

155155
# Run opencode upstream unit tests (turbo: opencode + fork-tests + app)
156156
test-opencode-unit: opencode-install-if-needed
157-
OPENCODE_CONFIG_CONTENT='{"auth":{"enabled":false}}' bun turbo test --cwd packages/opencode
157+
bun --cwd packages/opencode turbo test
158158

159159
# Optional submodule drift and dirty state check
160160
check-opencode-submodule-drift:

0 commit comments

Comments
 (0)