user-messages.d.ts 745 B

12345678910111213141516171819202122232425
  1. import { IaCTestFlags } from '../../../../cli/commands/test/iac/local-execution/types';
  2. /**
  3. * Displayed as the title of the test output.
  4. */
  5. export declare const iacTestTitle: string;
  6. /**
  7. * Progress indication message while files are tested.
  8. */
  9. export declare const spinnerMessage: string;
  10. /**
  11. * Displayed when a test resolves successfully.
  12. */
  13. export declare const spinnerSuccessMessage: string;
  14. /**
  15. * Message for using custom rules.
  16. */
  17. export declare const customRulesMessage: string;
  18. /**
  19. * Message for using custom rules.
  20. */
  21. export declare const customRulesReportMessage: string;
  22. /**
  23. * @returns whether or not to include user messages in the output.
  24. */
  25. export declare function shouldLogUserMessages(options: IaCTestFlags): boolean;