File tree Expand file tree Collapse file tree
registry/coder/modules/coder-utils Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The Coder Utils module is a building block for modules that need to run multiple
1616``` tf
1717module "coder_utils" {
1818 source = "registry.coder.com/coder/coder-utils/coder"
19- version = "0 .0.1 "
19+ version = "2 .0.0 "
2020
2121 agent_id = coder_agent.main.id
2222 module_directory = "$HOME/.coder-modules/coder/claude-code"
@@ -65,7 +65,7 @@ By default each `coder_script` renders in the Coder UI as plain "Install Script"
6565``` tf
6666module "coder_utils" {
6767 source = "registry.coder.com/coder/coder-utils/coder"
68- version = "0 .0.1 "
68+ version = "2 .0.0 "
6969
7070 agent_id = coder_agent.main.id
7171 module_directory = "$HOME/.coder-modules/coder/claude-code"
Original file line number Diff line number Diff line change 11import { describe , expect , it } from "bun:test" ;
2- import { runTerraformApply , runTerraformInit , testRequiredVariables } from "~test" ;
2+ import {
3+ runTerraformApply ,
4+ runTerraformInit ,
5+ testRequiredVariables ,
6+ } from "~test" ;
37
48describe ( "coder-utils" , async ( ) => {
59 await runTerraformInit ( import . meta. dir ) ;
@@ -22,9 +26,7 @@ describe("coder-utils", async () => {
2226 throw new Error ( "Unknown error generated" ) ;
2327 }
2428
25- expect ( ex . message ) . toContain (
26- "module_directory must match the pattern" ,
27- ) ;
29+ expect ( ex . message ) . toContain ( "module_directory must match the pattern" ) ;
2830 expect ( ex . message ) . toContain (
2931 "'$HOME/.coder-modules/<namespace>/<module-name>'" ,
3032 ) ;
You can’t perform that action at this time.
0 commit comments