(chainable: any)
| 27 | export function getChainableContext(chainable: TestAPI): InternalChainableContext |
| 28 | export function getChainableContext(chainable: any): InternalChainableContext | undefined |
| 29 | export function getChainableContext(chainable: any): InternalChainableContext | undefined { |
| 30 | return chainable?.[kChainableContext] |
| 31 | } |
| 32 | |
| 33 | export function createChainable<T extends string, Args extends any[], R = any>( |
| 34 | keys: T[], |
no outgoing calls
no test coverage detected