test(perf): clean acpx runtime fixtures at suite end

This commit is contained in:
Peter Steinberger
2026-03-02 17:30:17 +00:00
parent d4bf07d075
commit 310dd24ce3

View File

@@ -1,6 +1,6 @@
import os from "node:os";
import path from "node:path";
import { afterEach, describe, expect, it } from "vitest";
import { afterAll, describe, expect, it } from "vitest";
import { runAcpRuntimeAdapterContract } from "../../../src/acp/runtime/adapter-contract.testkit.js";
import {
cleanupMockRuntimeFixtures,
@@ -10,7 +10,7 @@ import {
} from "./runtime-internals/test-fixtures.js";
import { AcpxRuntime, decodeAcpxRuntimeHandleState } from "./runtime.js";
afterEach(async () => {
afterAll(async () => {
await cleanupMockRuntimeFixtures();
});