fix(test): refresh plugin-sdk package boundary exports

This commit is contained in:
Peter Steinberger
2026-04-08 10:29:13 +01:00
parent 208c49841c
commit 4c65fa8eae
2 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1 @@
export * from "../../../src/plugin-sdk/provider-web-search-config-contract.js";

View File

@@ -69,7 +69,7 @@ function expectResolvedBundledDir(params: {
bundledDirOverride?: string;
disableBundledPlugins?: string;
vitest?: string;
execArgv?: string[];
execArgv?: readonly string[];
}) {
vi.spyOn(process, "cwd").mockReturnValue(params.cwd);
process.argv[1] = params.argv1 ?? "/usr/bin/env";
@@ -103,7 +103,7 @@ function expectResolvedBundledDirFromRoot(params: {
bundledDirOverride?: string;
vitest?: string;
cwd?: string;
execArgv?: string[];
execArgv?: readonly string[];
}) {
expectResolvedBundledDir({
cwd: params.cwd ?? params.repoRoot,