import { afterAll, beforeAll, test } from "bun:test"; import { VerdaccioRegistry, bunEnv, runBunInstall } from "harness"; const registry = new VerdaccioRegistry(); beforeAll(async () => { await registry.start(); }); afterAll(() => { registry.stop(); }); test("should handle resolving optional peer from multiple instances of same package", async () => { const { packageDir } = await registry.createTestDir({ files: { "package.json": JSON.stringify({ name: "pkg", dependencies: { "dep-1": "npm:one-optional-peer-dep@1.0.2", "dep-2": "npm:one-optional-peer-dep@1.0.2", "one-dep": "1.0.0", }, }), }, }); // this shouldn't hit an assertion await runBunInstall(bunEnv, packageDir); });