test(perf): cache plugin fixtures and streamline shell tests

This commit is contained in:
Peter Steinberger
2026-03-02 11:35:04 +00:00
parent cf67e374c0
commit 43bffe7bdc
3 changed files with 50 additions and 35 deletions

View File

@@ -1,10 +1,5 @@
import { beforeAll, describe, expect, it } from "vitest";
let validateConfigObject: typeof import("./config.js").validateConfigObject;
beforeAll(async () => {
({ validateConfigObject } = await import("./config.js"));
});
import { describe, expect, it } from "vitest";
import { validateConfigObject } from "./config.js";
describe("meta.lastTouchedAt numeric timestamp coercion", () => {
it("accepts a numeric Unix timestamp and coerces it to an ISO string", () => {