fix(release): harden beta validation lanes

(cherry picked from commit 218bceaa14)
This commit is contained in:
Peter Steinberger
2026-04-26 22:19:43 +01:00
parent 95ae3c00bd
commit ef3309a986
5 changed files with 25 additions and 1 deletions

View File

@@ -162,6 +162,7 @@ describe("telegram live qa runtime", () => {
sutAccountId: "sut",
});
expect(next.agents?.defaults?.skipBootstrap).toBe(true);
expect(next.plugins?.allow).toContain("telegram");
expect(next.plugins?.entries?.telegram).toEqual({ enabled: true });
expect(next.channels?.telegram).toEqual({

View File

@@ -476,6 +476,13 @@ function buildTelegramQaConfig(
};
return {
...baseCfg,
agents: {
...baseCfg.agents,
defaults: {
...baseCfg.agents?.defaults,
skipBootstrap: true,
},
},
plugins: {
...baseCfg.plugins,
allow: pluginAllow,