@aws-cdk-testing/cli-integ
Version:
Integration tests for the AWS CDK CLI
15 lines (14 loc) • 378 B
TypeScript
/**
* Custom Jest matchers for CLI integration tests.
*/
declare global {
namespace jest {
interface Matchers<R> {
/**
* Assert that the line following a matching line matches the expected pattern.
*/
toHaveNextLineMatching(linePattern: string | RegExp, expected: string | RegExp): R;
}
}
}
export {};