test: speed up slow unit checks

This commit is contained in:
Peter Steinberger
2026-04-25 08:59:48 +01:00
parent 2011de69d3
commit a4fc6c2409
2 changed files with 26 additions and 19 deletions

View File

@@ -57,13 +57,6 @@ describe("src extension import boundary inventory", () => {
expect(await srcInventoryPromise).toEqual([]);
});
it("produces stable sorted output", async () => {
const first = await srcInventoryPromise;
const second = await collectSrcExtensionImportBoundaryInventory();
expect(second).toEqual(first);
});
it("script json output stays empty", async () => {
const jsonOutput = await srcJsonOutputPromise;
@@ -78,13 +71,6 @@ describe("sdk/package extension import boundary inventory", () => {
expect(await sdkPackageInventoryPromise).toEqual([]);
});
it("produces stable sorted output", async () => {
const first = await sdkPackageInventoryPromise;
const second = await collectSdkPackageExtensionImportBoundaryInventory();
expect(second).toEqual(first);
});
it("script json output stays empty", async () => {
const jsonOutput = await sdkPackageJsonOutputPromise;