(t *testing.T)
| 42 | } |
| 43 | |
| 44 | func TestExec_OpenAI_HideToolCalls(t *testing.T) { |
| 45 | t.Parallel() |
| 46 | out := runCLI(t, "run", "--exec", "testdata/fs_tools.yaml", "--hide-tool-calls", "How many files in testdata/working_dir? Only output the number.") |
| 47 | |
| 48 | require.Equal(t, "1", out) |
| 49 | } |
| 50 | |
| 51 | func TestExec_OpenAI_gpt5(t *testing.T) { |
| 52 | t.Parallel() |