mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-07-10 14:53:09 +00:00
15 lines
419 B
TypeScript
15 lines
419 B
TypeScript
import {
|
|
createTemporaryVault as createGenericTemporaryVault,
|
|
type TemporaryVault,
|
|
} from "@vrtmrz/obsidian-test-session";
|
|
|
|
export type { TemporaryVault };
|
|
|
|
export async function createTemporaryVault(prefix = "obsidian-livesync-e2e-"): Promise<TemporaryVault> {
|
|
return await createGenericTemporaryVault({
|
|
prefix,
|
|
pluginIds: ["obsidian-livesync"],
|
|
idPrefix: "livesync-e2e",
|
|
});
|
|
}
|