fix: repair release validation follow-up checks

This commit is contained in:
Peter Steinberger
2026-04-27 02:09:06 +01:00
parent 8c18df02f3
commit 110fa97f2a
2 changed files with 6 additions and 6 deletions

View File

@@ -421,7 +421,7 @@ describe("createEmbeddedLobsterRunner", () => {
await loadEmbeddedToolRuntimeFromPackage();
const corePath = requireForTest.resolve("@clawdbot/lobster/core");
const validationPath = corePath.replace(/\/core\/index\.js$/, "/validation.js");
const validationPath = path.join(path.dirname(path.dirname(corePath)), "validation.js");
const validationModule = (await import(pathToFileURL(validationPath).href)) as {
sharedAjv: import("ajv").default;
};