fix(ci): repair plugin registry test lanes

This commit is contained in:
Peter Steinberger
2026-04-26 01:29:47 +01:00
parent e7c131d6de
commit b565e6e963
4 changed files with 27 additions and 9 deletions

View File

@@ -33,6 +33,7 @@ describe("plugins cli policy mutations", () => {
expect(writeConfigFile).toHaveBeenCalledWith(enabledConfig);
expect(refreshPluginRegistry).toHaveBeenCalledWith({
config: enabledConfig,
installRecords: {},
reason: "policy-changed",
});
});
@@ -52,6 +53,7 @@ describe("plugins cli policy mutations", () => {
expect(nextConfig.plugins?.entries?.alpha?.enabled).toBe(false);
expect(refreshPluginRegistry).toHaveBeenCalledWith({
config: nextConfig,
installRecords: {},
reason: "policy-changed",
});
});