/** * @file * * Jest **plugin-less** global setup entry point. * * The counterpart to `./global-setup.ts` (which installs and enables the built * plugin). This one runs {@link createSetup} with `installPlugin: false`, so it * registers an **empty** temp vault and publishes the owned-instance endpoint to * workers without copying or enabling any plugin. Its default export is the setup * function, as Jest's `globalSetup` loader requires. */ /** * Jest global setup function (plugin-less). * * Registers an empty temp vault and populates `globalThis.__obsidianIntegrationTesting` * for tests, without copying or enabling any plugin. */ export declare const setup: (this: void) => Promise; /** * Jest global teardown function. * * Removes the temporary vault created during setup. */ export declare const teardown: (this: void) => Promise; export { getTemporaryVault, getTransportOptions } from './global-setup.cjs'; export default setup;