(t *testing.T)
| 334 | } |
| 335 | |
| 336 | func TestApp_ResolveSkillCommand_NotSlashCommand(t *testing.T) { |
| 337 | t.Parallel() |
| 338 | |
| 339 | ctx := t.Context() |
| 340 | rt := &mockRuntime{} |
| 341 | sess := session.New() |
| 342 | app := New(t.Context(), rt, sess) |
| 343 | |
| 344 | resolved, err := app.ResolveSkillCommand(ctx, "not a slash command") |
| 345 | require.NoError(t, err) |
| 346 | assert.Empty(t, resolved) |
| 347 | } |
| 348 | |
| 349 | func TestApp_UndoLastSnapshot(t *testing.T) { |
| 350 | t.Parallel() |
nothing calls this directly
no test coverage detected