(t *testing.T)
| 61 | } |
| 62 | |
| 63 | func TestStepFromContextAbsent(t *testing.T) { |
| 64 | t.Parallel() |
| 65 | |
| 66 | got, ok := chatdebug.StepFromContext(context.Background()) |
| 67 | require.False(t, ok) |
| 68 | require.Nil(t, got) |
| 69 | } |
| 70 | |
| 71 | func TestContextWithRunAndStep(t *testing.T) { |
| 72 | t.Parallel() |
nothing calls this directly
no test coverage detected