/** * 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(); } };