console-fail-test
Version:
Gently fails test runs if the console was used during them. 📢
1 lines • 882 B
Source Map (JSON)
{"version":3,"sources":["../../src/spies/spyTypes.ts"],"sourcesContent":["import { CftRequest } from \"../types.js\";\n\nexport type SpyFactoryGetter = (request: CftRequest) => SpyFactory | undefined;\n\n/**\n * Creates method spies that abstract the spy library implementation.\n * @param container - An object whose method is to be spied on.\n * @param methodName - The key of the method to spy on, such as `\"log\"`.\n */\nexport type SpyFactory = (container: unknown, methodName: string) => MethodSpy;\n\n/**\n * Record for a single method being spied upon.\n */\nexport interface MethodSpy {\n\t/**\n\t * @returns For each call to the spy, its arguments.\n\t */\n\tgetCalls(): SpyCallArgs[];\n\n\t/**\n\t * Restores the original method on the container.\n\t */\n\trestore(): void;\n}\n\nexport type SpyCallArgs = unknown[];\n"],"mappings":";;;;;;;;;;;;;;AAAA;AAAA;","names":[]}