mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-27 06:45:26 +02:00
23 lines
549 B
TypeScript
23 lines
549 B
TypeScript
/**
|
|
* n8n Test Containers
|
|
*
|
|
* This package provides container management utilities for n8n testing.
|
|
*/
|
|
|
|
export { createN8NStack } from './n8n-test-container-creation';
|
|
export type { N8NConfig, N8NStack } from './n8n-test-container-creation';
|
|
|
|
export * from './performance-plans';
|
|
|
|
export { ContainerTestHelpers } from './n8n-test-container-helpers';
|
|
export {
|
|
setupMailpit,
|
|
getMailpitEnvironment,
|
|
mailpitClear,
|
|
mailpitList,
|
|
mailpitGet,
|
|
mailpitWaitForMessage,
|
|
type MailpitMessage,
|
|
type MailpitQuery,
|
|
} from './n8n-test-container-mailpit';
|