test: align release boundary expectations

This commit is contained in:
Peter Steinberger
2026-04-27 01:16:13 +01:00
parent 7cecbe1002
commit 6fed787297
3 changed files with 3 additions and 5 deletions

View File

@@ -339,7 +339,6 @@ describe("collectForbiddenPackedPathErrors", () => {
"dist/plugin-sdk/qa-channel-protocol.d.ts",
"dist/qa-runtime-B9LDtssJ.js",
"docs/channels/qa-channel.md",
"docs/refactor/qa.md",
"qa/scenarios/index.md",
]),
).toEqual([
@@ -352,7 +351,6 @@ describe("collectForbiddenPackedPathErrors", () => {
'npm package must not include private QA lab artifact "dist/extensions/qa-lab/runtime-api.js".',
'npm package must not include private QA lab artifact "dist/extensions/qa-lab/src/cli.js".',
'npm package must not include private QA lab type artifact "dist/plugin-sdk/extensions/qa-lab/cli.d.ts".',
'npm package must not include private QA refactor docs "docs/refactor/qa.md".',
'npm package must not include private QA runtime chunk "dist/qa-runtime-B9LDtssJ.js".',
'npm package must not include private QA suite artifact "qa/scenarios/index.md".',
]);

View File

@@ -459,7 +459,6 @@ describe("collectForbiddenPackPaths", () => {
"dist/plugin-sdk/qa-runtime.js",
"dist/qa-runtime-B9LDtssJ.js",
"docs/channels/qa-channel.md",
"docs/refactor/qa.md",
"qa/scenarios/index.md",
]),
).toEqual([
@@ -473,7 +472,6 @@ describe("collectForbiddenPackPaths", () => {
"dist/plugin-sdk/qa-runtime.js",
"dist/qa-runtime-B9LDtssJ.js",
"docs/channels/qa-channel.md",
"docs/refactor/qa.md",
"qa/scenarios/index.md",
]);
});

View File

@@ -46,7 +46,9 @@ describe("test-install-sh-docker", () => {
);
expect(runner).toContain("resolve_update_baseline_version");
expect(runner).toContain('quiet_npm view "${PACKAGE_NAME}@${UPDATE_BASELINE_VERSION}" version');
expect(workflow).toContain("OPENCLAW_INSTALL_SMOKE_UPDATE_BASELINE: latest");
expect(workflow).toContain(
"OPENCLAW_INSTALL_SMOKE_UPDATE_BASELINE: ${{ inputs.update_baseline_version || 'latest' }}",
);
});
it("can reuse dist from the already-built root Docker smoke image", () => {