mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-28 05:16:23 -06:00
refactor(scripts): dedupe release assertion readers
This commit is contained in:
@@ -365,6 +365,13 @@ describe("scripts/test-projects changed-target routing", () => {
|
||||
"scripts/e2e/lib/release-user-journey/assertions.mjs",
|
||||
["test/scripts/release-user-journey-assertions.test.ts"],
|
||||
],
|
||||
[
|
||||
"scripts/e2e/lib/release-assertion-files.mjs",
|
||||
[
|
||||
"test/scripts/release-scenarios-assertions.test.ts",
|
||||
"test/scripts/release-user-journey-assertions.test.ts",
|
||||
],
|
||||
],
|
||||
[
|
||||
"scripts/e2e/lib/openai-chat-tools/write-config.mjs",
|
||||
["test/scripts/openai-chat-tools-client.test.ts"],
|
||||
@@ -375,10 +382,7 @@ describe("scripts/test-projects changed-target routing", () => {
|
||||
],
|
||||
[
|
||||
"scripts/e2e/openai-chat-tools-docker.sh",
|
||||
[
|
||||
"test/scripts/openai-chat-tools-client.test.ts",
|
||||
"test/scripts/docker-e2e-plan.test.ts",
|
||||
],
|
||||
["test/scripts/openai-chat-tools-client.test.ts", "test/scripts/docker-e2e-plan.test.ts"],
|
||||
],
|
||||
[
|
||||
"scripts/e2e/lib/openai-web-search-minimal/mock-server.mjs",
|
||||
@@ -595,10 +599,7 @@ describe("scripts/test-projects changed-target routing", () => {
|
||||
],
|
||||
["scripts/e2e/mcp-channels-seed.ts", ["test/scripts/docker-e2e-seeds.test.ts"]],
|
||||
["scripts/e2e/docker-openai-seed.ts", ["test/scripts/docker-e2e-seeds.test.ts"]],
|
||||
[
|
||||
"scripts/e2e/mcp-code-mode-gateway-seed.ts",
|
||||
["test/scripts/docker-e2e-seeds.test.ts"],
|
||||
],
|
||||
["scripts/e2e/mcp-code-mode-gateway-seed.ts", ["test/scripts/docker-e2e-seeds.test.ts"]],
|
||||
[
|
||||
"scripts/e2e/cron-mcp-cleanup-docker.sh",
|
||||
[
|
||||
@@ -903,14 +904,15 @@ describe("scripts/test-projects changed-target routing", () => {
|
||||
});
|
||||
|
||||
it("routes code-mode namespace live Docker repro changes through its regression tests", () => {
|
||||
expect(resolveChangedTestTargetPlan(["scripts/repro/code-mode-namespace-live-docker.sh"]))
|
||||
.toEqual({
|
||||
mode: "targets",
|
||||
targets: [
|
||||
"test/scripts/code-mode-namespace-live.test.ts",
|
||||
"test/scripts/docker-build-helper.test.ts",
|
||||
],
|
||||
});
|
||||
expect(
|
||||
resolveChangedTestTargetPlan(["scripts/repro/code-mode-namespace-live-docker.sh"]),
|
||||
).toEqual({
|
||||
mode: "targets",
|
||||
targets: [
|
||||
"test/scripts/code-mode-namespace-live.test.ts",
|
||||
"test/scripts/docker-build-helper.test.ts",
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
it("routes group visible reply config changes through channel delivery regressions", () => {
|
||||
|
||||
Reference in New Issue
Block a user