test: remove redundant line account-id env listing case

This commit is contained in:
Peter Steinberger
2026-02-16 07:52:08 +00:00
parent b18b85dc77
commit 8505577218

View File

@@ -114,15 +114,6 @@ describe("LINE accounts", () => {
expect(ids).toContain(DEFAULT_ACCOUNT_ID);
});
it("returns default from env", () => {
process.env.LINE_CHANNEL_ACCESS_TOKEN = "env-token";
const cfg: OpenClawConfig = {};
const ids = listLineAccountIds(cfg);
expect(ids).toContain(DEFAULT_ACCOUNT_ID);
});
});
describe("resolveDefaultLineAccountId", () => {