nx/tools/scripts/stop-local-registry.ts
BAK BYEONG JUN 18932f4a5f
Some checks failed
CI / checks (push) Has been cancelled
init
2025-05-06 13:52:36 +00:00

11 lines
243 B
TypeScript

/**
* This script stops the local registry for e2e testing purposes.
* It is meant to be called in jest's globalTeardown.
*/
export default () => {
if ((global as any).stopLocalRegistry) {
(global as any).stopLocalRegistry();
}
};