mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
11 lines
258 B
JavaScript
11 lines
258 B
JavaScript
/**
|
|
* Jest global teardown - plain JS to bypass Jest's transform system.
|
|
*/
|
|
module.exports = async () => {
|
|
const stack = globalThis.__TESTCONTAINERS_STACK__;
|
|
if (stack) {
|
|
await stack.stop();
|
|
console.log('\n✓ Testcontainers stack stopped\n');
|
|
}
|
|
};
|