From 5973b9ff4b5960c2dab39bd471257e6a2a11c8fe Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 1 Jun 2026 10:44:08 +0100 Subject: [PATCH] fix(e2e): satisfy runtime smoke lint --- .../e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs index c4ca27ad0fd..f52d02f9e83 100644 --- a/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs +++ b/scripts/e2e/lib/bundled-plugin-install-uninstall/runtime-smoke.mjs @@ -241,7 +241,7 @@ export function activateSmokePlugin(config, pluginId, channels = []) { const allow = Array.isArray(config.plugins?.allow) ? Array.from(new Set([...config.plugins.allow, pluginId].filter(isNonEmptyString))) : undefined; - const channelConfig = { ...(config.channels ?? {}) }; + const channelConfig = { ...config.channels }; for (const channel of channels) { channelConfig[channel] = { ...(typeof channelConfig[channel] === "object" && channelConfig[channel] !== null