(ctx)
| 28 | describe('unwrapResolver — plain function pass-through', () => { |
| 29 | test('returns the function as-is, no gate', () => { |
| 30 | const fn: ResolverFn = (ctx) => `hello-${ctx.skillName}`; |
| 31 | const { resolve, appliesTo } = unwrapResolver(fn); |
| 32 | expect(resolve(makeCtx())).toBe('hello-test-skill'); |
| 33 | expect(appliesTo).toBeUndefined(); |
no outgoing calls
no test coverage detected