We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e20a11e commit 11438bcCopy full SHA for 11438bc
1 file changed
src/plugins/loader.test.ts
@@ -5518,9 +5518,10 @@ module.exports = {
5518
expect(fs.existsSync(marker)).toBe(false);
5519
expect(registry.channelSetups).toHaveLength(0);
5520
expect(registry.channels).toHaveLength(0);
5521
- expect(registry.plugins.find((entry) => entry.id === "workspace-shadow")?.status).toBe(
5522
- "disabled",
5523
- );
+ expect(registry.plugins.find((entry) => entry.id === "workspace-shadow")).toMatchObject({
+ status: "disabled",
+ error: "workspace plugin (disabled by default)",
5524
+ });
5525
});
5526
5527
it("keeps trusted setup-only workspace channel plugins available when explicitly scoped", () => {
0 commit comments