File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
registry/coder/modules/claude-code Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -295,16 +295,18 @@ describe("claude-code", async () => {
295295 post_install_script : dedent `
296296 #!/bin/bash
297297 env | grep AGENTAPI_CHAT_BASE_PATH || echo "AGENTAPI_CHAT_BASE_PATH not found"
298- `
298+ ` ,
299299 } ,
300300 } ) ;
301301
302302 await execModuleScript ( id ) ;
303- const startLog = await execContainer ( id , [
304- "bash" ,
305- "-c" ,
306- "cat /home/coder/.claude-module/post_install.log" ,
307- ] ) ;
308- expect ( startLog . stdout ) . toContain ( "ARG_AGENTAPI_CHAT_BASE_PATH=/@default/default.foo/apps/ccw/chat" ) ;
303+ const startLog = await execContainer ( id , [
304+ "bash" ,
305+ "-c" ,
306+ "cat /home/coder/.claude-module/post_install.log" ,
307+ ] ) ;
308+ expect ( startLog . stdout ) . toContain (
309+ "ARG_AGENTAPI_CHAT_BASE_PATH=/@default/default.foo/apps/ccw/chat" ,
310+ ) ;
309311 } ) ;
310312} ) ;
You can’t perform that action at this time.
0 commit comments