test: keep twitch entry test lazy

This commit is contained in:
Peter Steinberger
2026-04-17 22:17:38 +01:00
parent 75ffa29054
commit e493d1d2fd

View File

@@ -1,4 +1,4 @@
import { describe, expect, it } from "vitest";
import { describe } from "vitest";
import { assertBundledChannelEntries } from "../../test/helpers/bundled-channel-entry.ts";
import entry from "./index.js";
import setupEntry from "./setup-entry.js";
@@ -10,11 +10,4 @@ describe("twitch bundled entries", () => {
expectedName: "Twitch",
setupEntry,
});
it("loads the setup-only channel plugin", () => {
const plugin = setupEntry.loadSetupPlugin?.();
expect(plugin?.id).toBe("twitch");
expect(plugin?.setupWizard).toBeDefined();
});
});