test: keep bluebubbles schema tests extension-local

This commit is contained in:
Shakker
2026-05-07 12:00:18 +01:00
parent 2c0f8a0beb
commit 6ef7fa08af

View File

@@ -1,5 +1,4 @@
import { describe, expect, it } from "vitest";
import { BlueBubblesConfigSchema } from "../../extensions/bluebubbles/api.js";
import {
DiscordConfigSchema,
IMessageConfigSchema,
@@ -117,11 +116,6 @@ describe('account dmPolicy="allowlist" uses inherited allowFrom', () => {
schema: IrcConfigSchema,
config: { allowFrom: ["nick"], accounts: { work: { dmPolicy: "allowlist" } } },
},
{
name: "bluebubbles",
schema: BlueBubblesConfigSchema,
config: { allowFrom: ["sender"], accounts: { work: { dmPolicy: "allowlist" } } },
},
] as const)(
"accepts $name account allowlist when parent allowFrom exists",
({ schema, config }) => {