refactor: split plugin testing seam from bundled extension helpers

This commit is contained in:
Peter Steinberger
2026-03-17 00:59:16 -07:00
parent 527a1919ea
commit f9588da3e0
101 changed files with 144 additions and 105 deletions

View File

@@ -1,9 +1,9 @@
import { afterEach, describe, expect, it, vi } from "vitest";
import { createStartAccountContext } from "../../test-utils/start-account-context.js";
import { createStartAccountContext } from "../../../test/helpers/extensions/start-account-context.js";
import {
expectStopPendingUntilAbort,
startAccountAndTrackLifecycle,
} from "../../test-utils/start-account-lifecycle.js";
} from "../../../test/helpers/extensions/start-account-lifecycle.js";
import type { ResolvedNextcloudTalkAccount } from "./accounts.js";
const hoisted = vi.hoisted(() => ({

View File

@@ -3,7 +3,7 @@ import {
createSendCfgThreadingRuntime,
expectProvidedCfgSkipsRuntimeLoad,
expectRuntimeCfgFallback,
} from "../../test-utils/send-config.js";
} from "../../../test/helpers/extensions/send-config.js";
const hoisted = vi.hoisted(() => ({
loadConfig: vi.fn(),