test(script): batch 34 (4 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:06 +09:00
parent 932e5e0d9f
commit 77d3e32d5c
4 changed files with 208 additions and 8 deletions
+2 -1
View File
@@ -7,6 +7,7 @@ const repositoryRoot = fileURLToPath(new URL("..", import.meta.url))
const commandRoots = [".opencode/command", ".agents/command"] as const
const skillRoots = [".opencode/skills", ".agents/skills"] as const
const packageLayoutTestTimeoutMs = 60_000
const packDryRunTimeoutMs = 15_000
setDefaultTimeout(packageLayoutTestTimeoutMs)
@@ -133,5 +134,5 @@ describe("published package layout", () => {
// then
const missingPaths = expectedAssetPaths.filter((expectedPath) => !packedPaths.has(expectedPath))
expect(missingPaths).toEqual([])
})
}, packDryRunTimeoutMs)
})