FN-6591: stabilize dist task-list barrel tests

Stabilize the @fusion/core task-list dist barrel guard without weakening its coverage.

- Load the built dist core barrel once in beforeAll when dist artifacts exist.
- Reuse the cached runtime module across dist export and fn_task_list surface assertions.
- Keep the source barrel and real runtime export path coverage intact while reducing duplicate dynamic import pressure.

Files changed:
 .../core/src/__tests__/task-list-format.test.ts    | 33 ++++++++++++++--------
 1 file changed, 21 insertions(+), 12 deletions(-)

Fusion-Task-Id: FN-6591

Fusion-Task-Lineage: 4de45ab8-fdb3-4ed0-bf21-afcc2fb49902
This commit is contained in:
gsxdsm
2026-06-17 13:59:29 -07:00
parent d8b80d0bfe
commit 556ddd4491

View File

@@ -1,7 +1,7 @@
import { existsSync } from "node:fs";
import { dirname, resolve } from "node:path";
import { fileURLToPath, pathToFileURL } from "node:url";
import { describe, expect, it } from "vitest";
import { beforeAll, describe, expect, it } from "vitest";
import {
clampTaskListText as sourceBarrelClampTaskListText,
MAX_TASK_LIST_TEXT_CHARS as SOURCE_BARREL_MAX_TASK_LIST_TEXT_CHARS,
@@ -80,6 +80,18 @@ function executeRuntimeTaskList(
describe("@fusion/core dist barrel export wiring (FN-6515/FN-6535)", () => {
const distIndex = resolve(__dirname, "../../dist/index.js");
const distTaskListFormat = resolve(__dirname, "../../dist/task-list-format.js");
let builtDistCore: RuntimeCoreTaskListModule | undefined;
/*
FNXC:CoreTests 2026-06-17-13:40:
FN-6591 requires the FN-6515/FN-6535 dist-barrel guard to settle under broad @fusion/core suite load without timeout, retry, or worker appeasement.
Load the built dist barrel once for every dist assertion so heartbeat fn_task_list coverage still exercises the real runtime export path while avoiding duplicate dynamic-import pressure in the timed test bodies.
*/
beforeAll(async () => {
if (!existsSync(distIndex)) return;
expect(existsSync(distTaskListFormat)).toBe(true);
builtDistCore = await import(pathToFileURL(distIndex).href) as RuntimeCoreTaskListModule;
});
it("re-exports task-list formatting helpers from the source barrel", () => {
expect(typeof sourceBarrelClampTaskListText).toBe("function");
@@ -87,20 +99,17 @@ describe("@fusion/core dist barrel export wiring (FN-6515/FN-6535)", () => {
expect(typeof SOURCE_BARREL_MAX_TASK_LIST_TEXT_CHARS).toBe("number");
});
it.skipIf(!existsSync(distIndex))("re-exports task-list formatting helpers from the built dist barrel", async () => {
expect(existsSync(distTaskListFormat)).toBe(true);
it.skipIf(!existsSync(distIndex))("re-exports task-list formatting helpers from the built dist barrel", () => {
const mod = builtDistCore;
const mod = await import(pathToFileURL(distIndex).href);
expect(typeof mod.clampTaskListText).toBe("function");
expect(typeof mod.formatTaskListText).toBe("function");
expect(typeof mod.MAX_TASK_LIST_TEXT_CHARS).toBe("number");
expect(mod).toBeDefined();
expect(typeof mod?.clampTaskListText).toBe("function");
expect(typeof mod?.formatTaskListText).toBe("function");
expect(typeof mod?.MAX_TASK_LIST_TEXT_CHARS).toBe("number");
});
it.skipIf(!existsSync(distIndex))("executes the fn_task_list surface through the built dist core module", async () => {
expect(existsSync(distTaskListFormat)).toBe(true);
const mod = await import(pathToFileURL(distIndex).href) as RuntimeCoreTaskListModule;
it.skipIf(!existsSync(distIndex))("executes the fn_task_list surface through the built dist core module", () => {
const mod = builtDistCore as RuntimeCoreTaskListModule;
const todoAnchor: RuntimeTask = {
id: "FN-001",
title: `Runtime todo task 001 ${"x".repeat(260)}`,