fix(regression): align provider wizard with bundled compat

This commit is contained in:
Tak Hoffman
2026-03-27 19:11:31 -05:00
parent 50a2f67258
commit e817b3cfbc
2 changed files with 8 additions and 0 deletions

View File

@@ -284,6 +284,8 @@ describe("provider wizard boundaries", () => {
config,
workspaceDir: "/tmp/workspace",
env,
bundledProviderAllowlistCompat: true,
bundledProviderVitestCompat: true,
});
});
@@ -431,6 +433,8 @@ describe("provider wizard boundaries", () => {
config: {},
workspaceDir: "/tmp/workspace",
env,
bundledProviderAllowlistCompat: true,
bundledProviderVitestCompat: true,
});
expect(matchingHook).toHaveBeenCalledWith({
config: {},

View File

@@ -136,6 +136,8 @@ function resolveProviderWizardProviders(params: {
config: params.config,
workspaceDir: params.workspaceDir,
env,
bundledProviderAllowlistCompat: true,
bundledProviderVitestCompat: true,
});
}
const cacheKey = buildProviderWizardCacheKey({
@@ -153,6 +155,8 @@ function resolveProviderWizardProviders(params: {
config: params.config,
workspaceDir: params.workspaceDir,
env,
bundledProviderAllowlistCompat: true,
bundledProviderVitestCompat: true,
});
const ttlMs = resolvePluginSnapshotCacheTtlMs(env);
let nextConfigCache = configCache;